C# 클래스 Opc.Ua.Com.Client.EnumString

A wrapper for the COM IEnumString interface.
상속: IDisposable
파일 보기 프로젝트 열기: OPCFoundation/UA-.NET 1 사용 예제들

공개 메소드들

메소드 설명
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