ToolsIsValidBaseUri Method |
Checks whether a Uri is valid as a Base Uri for resolving Relative URIs against.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static bool IsValidBaseUri(
Uri baseUri
)
Public Shared Function IsValidBaseUri (
baseUri As Uri
) As Boolean
Parameters
- baseUri
- Type: SystemUri
Base Uri to test.
Return Value
Type:
BooleanTrue if the Base Uri can be used to resolve Relative URIs against.
Remarks A Base Uri is valid if it is an absolute Uri and not using the mailto: scheme.
See Also