C# Class MarkdownDeep.Token

Show file Open project: FransBouma/DocNet Class Usage Examples

Public Properties

Property Type Description
data object
length int
startOffset int
type TokenType

Public Methods

Method Description
ToString ( ) : string
Token ( TokenType type, int startOffset, int length ) : System
Token ( TokenType type, object data ) : System

Method Details

ToString() public method

public ToString ( ) : string
return string

Token() public method

public Token ( TokenType type, int startOffset, int length ) : System
type TokenType
startOffset int
length int
return System

Token() public method

public Token ( TokenType type, object data ) : System
type TokenType
data object
return System

Property Details

data public property

public object data
return object

length public property

public int length
return int

startOffset public property

public int startOffset
return int

type public property

public TokenType type
return TokenType