Click or drag to resize

ExtensionsIsFullyEscaped Method

Note: This API is now obsolete.

Determines whether a String is fully escaped.

Namespace:  VDS.RDF
Assembly:  dotNetRDF (in dotNetRDF.dll) Version:
Syntax
[ObsoleteAttribute("No longer necessary, do not use", true)]
public static bool IsFullyEscaped(
	this string value,
	char[] cs,
	char[] ds
)

Parameters

value
Type: SystemString
String value.
cs
Type: SystemChar
Valid Escape Characters i.e. characters which may follow a backslash.
ds
Type: SystemChar
Characters which must be escaped i.e. must be preceded by a backslash.

Return Value

Type: Boolean

[Missing <returns> documentation for "M:VDS.RDF.Extensions.IsFullyEscaped(System.String,System.Char[],System.Char[])"]

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