C# Класс Opc.Ua.Com.Client.EnumString

A wrapper for the COM IEnumString interface.
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
Dispose ( bool disposing ) : void

An overrideable version of the Dispose.

Описание методов

Clone() публичный Метод

Clones the enumerator.
public Clone ( ) : EnumString
Результат EnumString

Dispose() публичный Метод

Frees any unmanaged resources.
public Dispose ( ) : void
Результат void

Dispose() защищенный Метод

An overrideable version of the Dispose.
protected Dispose ( bool disposing ) : void
disposing bool
Результат void

EnumString() публичный Метод

Initializes the object with an enumerator.
public EnumString ( object enumerator, int bufferLength ) : System
enumerator object
bufferLength int
Результат System

Next() публичный Метод

Fetches the next group of strings.
public Next ( string buffer, int count ) : int
buffer string
count int
Результат int

Next() публичный Метод

Fetches the next string (returns null if no more data).
public Next ( ) : string
Результат string

Reset() публичный Метод

Sets pointer to the start of the list.
public Reset ( ) : void
Результат void

Skip() публичный Метод

Skips a number of strings.
public Skip ( int count ) : void
count int
Результат void