Table of Contents

Class ParsingUtility.TagInfo

Namespace
TMPEffects.TextProcessing
Assembly
TMPEffects.dll

Utility class that holds data about a parsed tag.

public class ParsingUtility.TagInfo
Inheritance
ParsingUtility.TagInfo
Inherited Members

Constructors

TagInfo()

public TagInfo()

TagInfo(int, int, TagType, char, string, string)

public TagInfo(int startIndex, int endIndex, ParsingUtility.TagType type, char prefix, string name, string parameterString)

Parameters

startIndex int
endIndex int
type ParsingUtility.TagType
prefix char
name string
parameterString string

Fields

endIndex

End index of the tag in the source text.

public int endIndex

Field Value

int

name

Name of the tag.

public string name

Field Value

string

parameterString

The parameters of the tag, unparsed.

public string parameterString

Field Value

string

prefix

Prefix of the tag.

public char prefix

Field Value

char

startIndex

Start index of the tag in the source text.

public int startIndex

Field Value

int

type

Type of the tag (open, close).

public ParsingUtility.TagType type

Field Value

ParsingUtility.TagType