ICodeGenerator.ValidateIdentifier(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Throws an exception if the specified value is not a valid identifier.
public:
void ValidateIdentifier(System::String ^ value);
public void ValidateIdentifier (string value);
abstract member ValidateIdentifier : string -> unit
Public Sub ValidateIdentifier (value As String)
Parameters
- value
- String
The identifier to validate.
Exceptions
The identifier is not valid.
Remarks
Rather than returning a value, this method throws an exception if the specified identifier is not valid according to the method implementation. Typically, the exception is an ArgumentException. This method enables a code generator that implements this method to produce an informative error message based upon the value of an invalid identifier.