C# Class Novell.Directory.Ldap.Asn1.Asn1Sequence

Inheritance: Asn1Structured
Mostra file Open project: EventStore/csharp-ldap Class Usage Examples

Public Methods

Method Description
Asn1Sequence ( ) : System

Constructs an Asn1Sequence object with no actual Asn1Objects in it. Assumes a default size of 10 elements.

Asn1Sequence ( Asn1Object newContent, int size ) : System

Constructs an Asn1Sequence object with an array representing an Asn1 sequence.

Asn1Sequence ( int size ) : System

Constructs an Asn1Sequence object with the specified number of placeholders for Asn1Objects. It should be noted there are no actual Asn1Objects in this SequenceOf object.

Private Methods

Method Description
Asn1Sequence ( Asn1Decoder dec, System in_Renamed, int len ) : System
ToString ( ) : System.String

Method Details

Asn1Sequence() public method

Constructs an Asn1Sequence object with no actual Asn1Objects in it. Assumes a default size of 10 elements.
public Asn1Sequence ( ) : System
return System

Asn1Sequence() public method

Constructs an Asn1Sequence object with an array representing an Asn1 sequence.
public Asn1Sequence ( Asn1Object newContent, int size ) : System
newContent Asn1Object the array containing the Asn1 data for the sequence /// ///
size int Specifies the number of items in the array ///
return System

Asn1Sequence() public method

Constructs an Asn1Sequence object with the specified number of placeholders for Asn1Objects. It should be noted there are no actual Asn1Objects in this SequenceOf object.
public Asn1Sequence ( int size ) : System
size int Specifies the initial size of the collection. ///
return System