PointGroupQueryToken Class

A class that exposes constants that can be used to add special characters to query strings.
Inheritance Hierarchy
SystemObject
  Autodesk.Civil.DatabaseServicesPointGroupQueryToken

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.8.0.292
Syntax
public class PointGroupQueryToken

The PointGroupQueryToken type exposes the following members.

Constructors
 NameDescription
Public methodPointGroupQueryTokenInitializes a new instance of the PointGroupQueryToken class
Top
Properties
 NameDescription
Public propertyStatic memberAND Gets the query string token for a logical AND.
Public propertyStatic memberClosingParenthesis Gets the query string token for a closing parenthesis.
Public propertyStatic memberEqual Gets the query string token for a logical equals comparison.
Public propertyStatic memberFullDescriptionField Gets the full description.
Public propertyStatic memberGreaterThan Gets the query string token for a greater than comparison.
Public propertyStatic memberGreaterThanOrEqual Gets the query string token for a greater-than-or-equal comparison.
Public propertyStatic memberLessThan Gets the query string token for a less than comparison.
Public propertyStatic memberLessThanOrEqual Gets the query string token for a less-than-or-equal comparison.
Public propertyStatic memberNameField Gets the name for the PointGroupQueryToken.
Public propertyStatic memberNOT Gets the query string token for a logical NOT.
Public propertyStatic memberNotEqual Gets the query string token for a logical not equals comparison.
Public propertyStatic memberOpeningParenthesis Gets the query string token for an opening parenthesis.
Public propertyStatic memberOR Gets the query string token for a logical OR.
Public propertyStatic memberPointElevationField Gets the query string token for a point elevation field.
Public propertyStatic memberPointGroupField Gets the query string token for a point group field.
Public propertyStatic memberPointNumberField Gets the query string token for a point number field.
Public propertyStatic memberRawDescriptionField Gets the raw description.
Public propertyStatic memberSingleQuoteCode Gets the query string token for a single quote.
Public propertyStatic memberValueDelimiter Gets the query string token for a value delimiter.
Top
Remarks
You should use the ValueDelimiter and SingleQuoteCode constants exposed by this class to create query strings. Using ValueDelimiter protects your code from possible future changes in the token used for this purpose. SingleQuoteCode can be used when you need to add a single quote to a query string, where the ' character also demarks the end of a sub-string.
See Also