C# Class Grib.Api.Interop.GribKeysIterator

Wraps a grib_keys_iterator struct.
Inheritance: AutoRef
Exibir arquivo Open project: 0x1mason/GribApi.NET

Public Methods

Method Description
Create ( GribHandle handle, uint filters, string nspace ) : GribKeysIterator

Creates an instance of GribKeysIterator.

Next ( ) : bool

Gets the next value in a series.

Rewind ( ) : void

Rewinds this instance.

Protected Methods

Method Description
OnDispose ( bool disposing ) : void

Called when [dispose].

Private Methods

Method Description
GribKeysIterator ( IntPtr h ) : Grib.Api.Interop.SWIG

Method Details

Create() public static method

Creates an instance of GribKeysIterator.
public static Create ( GribHandle handle, uint filters, string nspace ) : GribKeysIterator
handle GribHandle The handle of the message to iterate.
filters uint The key filters.
nspace string The namespace of the keys to iterate.
return GribKeysIterator

Next() public method

Gets the next value in a series.
public Next ( ) : bool
return bool

OnDispose() protected method

Called when [dispose].
protected OnDispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

Rewind() public method

Rewinds this instance.
public Rewind ( ) : void
return void