This document is archived and information here might be outdated. Recommended version. |
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*