FieldDefVerifyName Method |
Field name has to start with alphabetic characters followed by alphanumeric and (_,-, $) symbols
Namespace: Com.Tibco.As.SpaceAssembly: TIBCO.ActiveSpaces.Common (in TIBCO.ActiveSpaces.Common.dll) Version: 2.0.0.0 (2.1.5.12)
Syntaxpublic static void VerifyName(
string name
)
Public Shared Sub VerifyName (
name As String
)
public:
static void VerifyName(
String^ name
)
static member VerifyName :
name : string -> unit
Parameters
- name
- Type: SystemString
The name.
ExceptionsException | Condition |
---|
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