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
intendIndex
inttype
ParsingUtility.TagTypeprefix
charname
stringparameterString
string
Fields
endIndex
End index of the tag in the source text.
public int endIndex
Field Value
name
Name of the tag.
public string name
Field Value
parameterString
The parameters of the tag, unparsed.
public string parameterString
Field Value
prefix
Prefix of the tag.
public char prefix
Field Value
startIndex
Start index of the tag in the source text.
public int startIndex
Field Value
type
Type of the tag (open, close).
public ParsingUtility.TagType type