Asn1ValueRange Class Reference

List of all members.

Public Member Functions

 Asn1ValueRange (long min, object max)
 Asn1ValueRange (object min, long max)
 Asn1ValueRange (long min, long max)
 Asn1ValueRange ()

Protected Attributes

long mMax
long mMin

Properties

long Max [get, set]
long Min [get, set]

Detailed Description

This class models an integer value range. These value ranges may be created by users for queries made to generated SEQUENCE or SET types.


Constructor & Destructor Documentation

Asn1ValueRange (  ) 

This constructor sets the minimum and maximum values to the limits set in System.Int64.

Asn1ValueRange ( long  min,
long  max 
)

This constructor takes a minimum and maximum value to set the range.

Asn1ValueRange ( object  min,
long  max 
)

This constructor ignores the minimum value and sets the maximal value for the range. To call it properly, pass in null for the minimum.

Asn1ValueRange ( long  min,
object  max 
)

This constructor ignores the maximal value and sets the minimal value for the range. To call it properly, pass in null for the maximum.


Member Data Documentation

long mMax [protected]

This is the maximum value in the range.

long mMin [protected]

This is the minimum value in the range.


Property Documentation

long Max [get, set]

This is the maximum value in the range.

long Min [get, set]

This is the minimum value in the range.