QNameOutputMapperReduceToQName Method (String, String) |
A Function which attempts to reduce a Uri to a QName.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public override bool ReduceToQName(
string uri,
out string qname
)
Public Overrides Function ReduceToQName (
uri As String,
<OutAttribute> ByRef qname As String
) As Boolean
Parameters
- uri
- Type: SystemString
The Uri to attempt to reduce. - qname
- Type: SystemString
The value to output the QName to if possible.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:VDS.RDF.QNameOutputMapper.ReduceToQName(System.String,System.String@)"]
Implements
INamespaceMapperReduceToQName(String, String)Remarks This function will return a Boolean indicated whether it succeeded in reducing the Uri to a QName. If it did then the out parameter qname will contain the reduction, otherwise it will be the empty string.
See Also