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!

CodeGenerator.IsValidIdentifier

Gets or sets whether the specified value is a value identifier.

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

Parameters

value
The value to test for equality against known value identifiers.

See Also

CodeGenerator Class | CodeGenerator Members | System.CodeDOM.Compiler Namespace