ArcObjects Library Reference (Geoprocessing)  

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,
  VARIANT_BOOL* pInQuote,
  VARIANT_BOOL* pTokenDone,
  BSTR* pToken
);
[C++]

Parameters

inChar [in]   inChar is a parameter of type BSTR pInQuote [out]   pInQuote is a parameter of type VARIANT_BOOL pTokenDone [out]   pTokenDone is a parameter of type VARIANT_BOOL pToken [out, retval]   pToken is a parameter of type BSTR

Product Availability

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

See Also

IGPParseString2 Interface