StringExtensionsIsHexEncoding Method |
Return true if the character sequence starting at the specified offset is a URI hex-encoded character.
Namespace:
VDS.RDF
Assembly:
dotNetRDF (in dotNetRDF.dll) Version:
Syntax public static bool IsHexEncoding(
this string str,
int index
)
<ExtensionAttribute>
Public Shared Function IsHexEncoding (
str As String,
index As Integer
) As Boolean
Parameters
- str
- Type: SystemString
The input string. - index
- Type: SystemInt32
The character offset from which to start the check for a hex-encoded character.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:VDS.RDF.StringExtensions.IsHexEncoding(System.String,System.Int32)"]
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. 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