DynamicExtensionsAsDynamic Method (INode, Uri) |
Dynamically wraps a node.
Namespace:
VDS.RDF.Dynamic
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static Object AsDynamic(
this INode node,
Uri baseUri = null
)
<ExtensionAttribute>
Public Shared Function AsDynamic (
node As INode,
Optional baseUri As Uri = Nothing
) As Object
Parameters
- node
- Type: VDS.RDFINode
The node to wrap dynamically. - baseUri (Optional)
- Type: SystemUri
The Uri to use for resolving relative predicate references.
Return Value
Type:
ObjectA dynamic node that wraps
node.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
INode. 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