Checks whether or not the name is a valid field name to be used by createTable. Excluded names are those that start with underscore or 'CQS', as well as those that are reserved words in the expression language.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
bool IsValidFieldName(
	string name
)
Function IsValidFieldName ( _
	name As String _
) As Boolean
bool IsValidFieldName(
	String^ name
)

Parameters

name
String
The name to check.

Return Value

true if the name is a valid field identifier, false otherwise.

See Also