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.IsValidIdentifier

Gets whether value is a valid identifier for this language.

[Visual Basic]
Function IsValidIdentifier( _
   ByVal value As String _
) As Boolean
[C#]
bool IsValidIdentifier(
   string value
);
[C++]
bool IsValidIdentifier(
   String* value
) = 0;
[JScript]
function IsValidIdentifier(
   value : String
) : Boolean;

Parameters

value
The value to test for validity as an identifier.

See Also

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