This document is archived and information here might be outdated.  Recommended version.


IGPParseString2.CheckToken Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geoprocessing > ESRI.ArcGIS.Geoprocessing > Interfaces > IG > IGPParseString2 Interface > IGPParseString2.CheckToken Method
ArcGIS Developer Help

IGPParseString2.CheckToken Method

Builds a string, one character at a time, returning whether that character is quoted and whether that character is the end of delimited token.

[Visual Basic .NET]
Public Function CheckToken ( _
    ByVal inChar As String, _
    ByRef pInQuote As Boolean, _
    ByRef pTokenDone As Boolean _
) As String
[C#]
public string CheckToken (
    string inChar,
    ref bool pInQuote,
    ref bool pTokenDone
);
[C++]
HRESULT CheckToken(
  BSTR inChar,
  Boolean* pInQuote,
  Boolean* pTokenDone
);
[C++]
Parameters
inChar [in]

inChar is a parameter of type BSTR pInQuote [out]
pInQuote is a parameter of type bool* pTokenDone [out]
pTokenDone is a parameter of type bool*

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

See Also

IGPParseString2 Interface