C# Class Opc.Ua.Com.Client.EnumString

A wrapper for the COM IEnumString interface.
Inheritance: IDisposable
Afficher le fichier Open project: OPCFoundation/UA-.NET Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : EnumString

Clones the enumerator.

Dispose ( ) : void

Frees any unmanaged resources.

EnumString ( object enumerator, int bufferLength ) : System

Initializes the object with an enumerator.

Next ( string buffer, int count ) : int

Fetches the next group of strings.

Next ( ) : string

Fetches the next string (returns null if no more data).

Reset ( ) : void

Sets pointer to the start of the list.

Skip ( int count ) : void

Skips a number of strings.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

An overrideable version of the Dispose.

Method Details

Clone() public méthode

Clones the enumerator.
public Clone ( ) : EnumString
Résultat EnumString

Dispose() public méthode

Frees any unmanaged resources.
public Dispose ( ) : void
Résultat void

Dispose() protected méthode

An overrideable version of the Dispose.
protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

EnumString() public méthode

Initializes the object with an enumerator.
public EnumString ( object enumerator, int bufferLength ) : System
enumerator object
bufferLength int
Résultat System

Next() public méthode

Fetches the next group of strings.
public Next ( string buffer, int count ) : int
buffer string
count int
Résultat int

Next() public méthode

Fetches the next string (returns null if no more data).
public Next ( ) : string
Résultat string

Reset() public méthode

Sets pointer to the start of the list.
public Reset ( ) : void
Résultat void

Skip() public méthode

Skips a number of strings.
public Skip ( int count ) : void
count int
Résultat void