Class DotEscapers
Dot escape helpers.
Inheritance
System.Object
DotEscapers
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: QuikGraph.Graphviz
Assembly: QuikGraph.Graphviz.dll
Syntax
public static class DotEscapers
Methods
| Improve this Doc View SourceEscape(String)
Escapes the given value
.
Declaration
public static string Escape(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | String value to escape. |
Returns
Type | Description |
---|---|
System.String | Escaped string. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
EscapePort(String)
Escapes the given value
as being a record port value.
Declaration
public static string EscapePort(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | String value to escape. |
Returns
Type | Description |
---|---|
System.String | Escaped string. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|
EscapeRecord(String)
Escapes the given value
as being a record value.
Declaration
public static string EscapeRecord(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | String value to escape. |
Returns
Type | Description |
---|---|
System.String | Escaped string. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
|