Class MediaDataReader<TRecord>
Definition
- Namespace:
- Tizen.Content.MediaContent
- Assembly:
- Tizen.Content.MediaContent.dll
Provides a means of reading results obtained by executing a query.
C#Copypublic class MediaDataReader<TRecord> : IMediaDataReader, IDisposable
- Inheritance
-
objectMediaDataReader<TRecord>
- Implements
-
System.IDisposable
Properties
Declaration
C#Copypublic TRecord Current { get; }
Property Value
| Type | Description |
|---|---|
| TRecord | The current record if the position is valid; otherwise null. |
Methods
Declaration
C#Copypublic void Dispose()
View Source
Dispose(bool)
Disposes of the resources (other than memory) used by the MediaDataReader.
Declaration
C#Copyprotected virtual void Dispose(bool disposing)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | disposing | true to release both managed and unmanaged resources; false to release only unmanaged resources. |
Declaration
C#Copypublic bool Read()
Returns
| Type | Description |
|---|---|
| bool | true if there are more rows; otherwise false. |
Explicit Interface Implementations
Declaration
C#Copyobject IMediaDataReader.Current { get; }
Returns
| Type | Description |
|---|---|
| object |
Implements
System.IDisposable