Click or drag to resize
FieldDefVerifyName Method
Field name has to start with alphabetic characters followed by alphanumeric and (_,-, $) symbols

Namespace: Com.Tibco.As.Space
Assembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.1.5.12)
Syntax
public static void VerifyName(
	string name
)

Parameters

name
Type: SystemString
The name.
Exceptions
ExceptionCondition
ASException If the name does not conform to the syntax
Remarks
The syntax for the field name can be described as follows:

Identifier : IdentifierStart IdentifierPart* ;

IdentifierStart : 'a'..'z' | 'A'..'Z'

IdentifierPart : 'a'..'z' | 'A'..'Z' | '_' | '-' | '0'..'9'| '$';

See Also