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.4.0.001)
Syntax
C# |
---|
public static void VerifyName( string name ) |
Visual Basic |
---|
Public Shared Sub VerifyName ( name As String ) |
Visual C++ |
---|
public: static void VerifyName( String^ name ) |
F# |
---|
static member VerifyName : name : string -> unit |
Parameters
- name
- Type: System..::..String
The name.
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'| '$';
Exceptions
Exception | Condition |
---|---|
Com.Tibco.As.Space..::..ASException | If the name does not conform to the syntax |