Show / Hide Table of Contents

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 Source

Escape(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

value is null.

| Improve this Doc View Source

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

value is null.

| Improve this Doc View Source

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

value is null.

  • Improve this Doc
  • View Source
In This Article
Back to top QuikGraph