ASN1C C# Runtime Library
7.6
|
Public Member Functions | |
Asn1ValueRange () | |
Asn1ValueRange (long min, long max) | |
Asn1ValueRange (object min, long max) | |
Asn1ValueRange (long min, object max) | |
Protected Attributes | |
long | mMax |
long | mMin |
Properties | |
long | Max [get, set] |
long | Min [get, set] |
This class models an integer value range. These value ranges may be created by users for queries made to generated SEQUENCE or SET types.
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.
|
protected |
This is the maximum value in the range.
|
protected |
This is the minimum value in the range.
|
getset |
This is the maximum value in the range.
|
getset |
This is the minimum value in the range.