NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICodeGenerator.ValidateIdentifier

Throws an exception if value is not a valid identifier. This allows the language to produce a very informative error message based upon value.

[Visual Basic]
Sub ValidateIdentifier( _
   ByVal value As String _
)
[C#]
void ValidateIdentifier(
   string value
);
[C++]
void ValidateIdentifier(
   String* value
) = 0;
[JScript]
function ValidateIdentifier(
   value : String
);

Parameters

value
The value to validate.

See Also

ICodeGenerator Interface | ICodeGenerator Members | System.CodeDOM.Compiler Namespace