JsonLdContextTryGetTerm Method |
Attempt to get an existing term definition.
Namespace:
VDS.RDF.JsonLd
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public bool TryGetTerm(
string term,
out JsonLdTermDefinition termDefinition,
bool includeAliases = false
)
Public Function TryGetTerm (
term As String,
<OutAttribute> ByRef termDefinition As JsonLdTermDefinition,
Optional includeAliases As Boolean = false
) As Boolean
Parameters
- term
- Type: SystemString
The key for the term to be retrieved. - termDefinition
- Type: VDS.RDF.JsonLdJsonLdTermDefinition
Receives the term definition found. - includeAliases (Optional)
- Type: SystemBoolean
Include searching for term against the IriMapping values of the term definitions.
Return Value
Type:
BooleanTrue if an entry was found for
term, false otherwise.
See Also