DynamicExtensionsAsDynamic Method (IGraph, Uri, Uri) |
Dynamically wraps a graph.
Namespace:
VDS.RDF.Dynamic
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static Object AsDynamic(
this IGraph graph,
Uri subjectBaseUri = null,
Uri predicateBaseUri = null
)
<ExtensionAttribute>
Public Shared Function AsDynamic (
graph As IGraph,
Optional subjectBaseUri As Uri = Nothing,
Optional predicateBaseUri As Uri = Nothing
) As Object
Parameters
- graph
- Type: VDS.RDFIGraph
The graph to wrap dynamically. - subjectBaseUri (Optional)
- Type: SystemUri
The Uri to use for resolving relative subject references. - predicateBaseUri (Optional)
- Type: SystemUri
The Uri used to resolve relative predicate references.
Return Value
Type:
ObjectA dynamic graph that wrappes
graph.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IGraph. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also