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!

ICodeSourceFile.IsValidIdentifier

Determines if the identifier is valid to be used. This will not check for duplicates, but rather ensure that the identifier is not a reserved word, keyword, or other illegal identifier.

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

Parameters

identifier
The identifier to check for validity.

See Also

ICodeSourceFile Interface | ICodeSourceFile Members | System.ComponentModel.Design.CodeModel Namespace