TokenInfo Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the TokenInfo class.
Overloads
TokenInfo() |
Initializes a new instance of the TokenInfo class to the default values. |
TokenInfo(Int32, Int32, TokenType) |
Initializes a new instance of the TokenInfo class to the specified values. |
Remarks
You can rely on the default initialization of C# or you can specify the token start and end points, as well as its type.
TokenInfo()
Initializes a new instance of the TokenInfo class to the default values.
public:
TokenInfo();
public:
TokenInfo();
TokenInfo();
public TokenInfo ();
Public Sub New ()
Remarks
Sets all the values of the class to default values according to C# language rules.
Applies to
TokenInfo(Int32, Int32, TokenType)
Initializes a new instance of the TokenInfo class to the specified values.
public:
TokenInfo(int startIndex, int endIndex, Microsoft::VisualStudio::Package::TokenType type);
public:
TokenInfo(int startIndex, int endIndex, Microsoft::VisualStudio::Package::TokenType type);
TokenInfo(int startIndex, int endIndex, Microsoft::VisualStudio::Package::TokenType type);
public TokenInfo (int startIndex, int endIndex, Microsoft.VisualStudio.Package.TokenType type);
new Microsoft.VisualStudio.Package.TokenInfo : int * int * Microsoft.VisualStudio.Package.TokenType -> Microsoft.VisualStudio.Package.TokenInfo
Public Sub New (startIndex As Integer, endIndex As Integer, type As TokenType)
Parameters
- startIndex
- Int32
[in] The first character of the token.
- endIndex
- Int32
[in] The last character of the token.
Remarks
The token's color index and any token triggers must be specified after the object has been constructed.