ICodeGenerator::ValidateIdentifier Method (String^)

 

Throws an exception if the specified value is not a valid identifier.

Namespace:   System.CodeDom.Compiler
Assembly:  System (in System.dll)

[PermissionSetAttribute(SecurityAction::LinkDemand, Name = "FullTrust")]
[PermissionSetAttribute(SecurityAction::InheritanceDemand, Name = "FullTrust")]
void ValidateIdentifier(
	String^ value
)

Parameters

value
Type: System::String^

The identifier to validate.

Exception Condition
ArgumentException

The identifier is not valid.

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.

SecurityAction::LinkDemand

for full trust for the immediate caller. This member cannot be used by partially trusted code.

SecurityAction::InheritanceDemand

for full trust for inheritors. This member cannot be inherited by partially trusted code.

.NET Framework
Available since 1.1
Return to top
Show: