ConfigurationLoaderGetConfigurationArray Method |
Gets all the literal values given for a property of a given Object in the Configuration Graph.
Namespace:
VDS.RDF.Configuration
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static string[] GetConfigurationArray(
IGraph g,
INode objNode,
INode property
)
Public Shared Function GetConfigurationArray (
g As IGraph,
objNode As INode,
property As INode
) As String()
Parameters
- g
- Type: VDS.RDFIGraph
Configuration Graph. - objNode
- Type: VDS.RDFINode
Object Node. - property
- Type: VDS.RDFINode
Property Node.
Return Value
Type:
String[Missing <returns> documentation for "M:VDS.RDF.Configuration.ConfigurationLoader.GetConfigurationArray(VDS.RDF.IGraph,VDS.RDF.INode,VDS.RDF.INode)"]
Remarks
Only returns the value part of Literal Nodes which are given as values for the property i.e. ignores all non-Literals and discards any language/data type from Literals.
See Also