C# 클래스 Dapper.DisposedReader

상속: DbDataReader
파일 보기 프로젝트 열기: lifebear/dapper-dot-net

공개 메소드들

메소드 설명
Close ( ) : void
GetBoolean ( int ordinal ) : bool
GetByte ( int ordinal ) : byte
GetBytes ( int ordinal, long dataOffset, Array buffer, int bufferOffset, int length ) : long
GetChar ( int ordinal ) : char
GetChars ( int ordinal, long dataOffset, Array buffer, int bufferOffset, int length ) : long
GetDataTypeName ( int ordinal ) : string
GetDateTime ( int ordinal ) : DateTime
GetDecimal ( int ordinal ) : decimal
GetDouble ( int ordinal ) : double
GetEnumerator ( ) : IEnumerator
GetFieldType ( int ordinal ) : Type
GetFieldValue ( int ordinal ) : T
GetFieldValueAsync ( int ordinal, CancellationToken cancellationToken ) : Task
GetFloat ( int ordinal ) : float
GetGuid ( int ordinal ) : Guid
GetInt16 ( int ordinal ) : short
GetInt32 ( int ordinal ) : int
GetInt64 ( int ordinal ) : long
GetName ( int ordinal ) : string
GetOrdinal ( string name ) : int
GetProviderSpecificFieldType ( int ordinal ) : Type
GetProviderSpecificValue ( int ordinal ) : object
GetProviderSpecificValues ( Array values ) : int
GetSchemaTable ( ) : DataTable
GetStream ( int ordinal ) : Stream
GetString ( int ordinal ) : string
GetTextReader ( int ordinal ) : TextReader
GetValue ( int ordinal ) : object
GetValues ( Array values ) : int
IsDBNull ( int ordinal ) : bool
IsDBNullAsync ( int ordinal, CancellationToken cancellationToken ) : Task
NextResult ( ) : bool
NextResultAsync ( CancellationToken cancellationToken ) : Task
Read ( ) : bool
ReadAsync ( CancellationToken cancellationToken ) : Task
this ( int ordinal ) : object
this ( string name ) : object

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void
GetDbDataReader ( int ordinal ) : DbDataReader

비공개 메소드들

메소드 설명
DisposedReader ( ) : System
InitializeLifetimeService ( ) : object
ThrowDisposed ( ) : T
ThrowDisposedAsync ( ) : Task

메소드 상세

Close() 공개 메소드

public Close ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

GetBoolean() 공개 메소드

public GetBoolean ( int ordinal ) : bool
ordinal int
리턴 bool

GetByte() 공개 메소드

public GetByte ( int ordinal ) : byte
ordinal int
리턴 byte

GetBytes() 공개 메소드

public GetBytes ( int ordinal, long dataOffset, Array buffer, int bufferOffset, int length ) : long
ordinal int
dataOffset long
buffer Array
bufferOffset int
length int
리턴 long

GetChar() 공개 메소드

public GetChar ( int ordinal ) : char
ordinal int
리턴 char

GetChars() 공개 메소드

public GetChars ( int ordinal, long dataOffset, Array buffer, int bufferOffset, int length ) : long
ordinal int
dataOffset long
buffer Array
bufferOffset int
length int
리턴 long

GetDataTypeName() 공개 메소드

public GetDataTypeName ( int ordinal ) : string
ordinal int
리턴 string

GetDateTime() 공개 메소드

public GetDateTime ( int ordinal ) : DateTime
ordinal int
리턴 DateTime

GetDbDataReader() 보호된 메소드

protected GetDbDataReader ( int ordinal ) : DbDataReader
ordinal int
리턴 DbDataReader

GetDecimal() 공개 메소드

public GetDecimal ( int ordinal ) : decimal
ordinal int
리턴 decimal

GetDouble() 공개 메소드

public GetDouble ( int ordinal ) : double
ordinal int
리턴 double

GetEnumerator() 공개 메소드

public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

GetFieldType() 공개 메소드

public GetFieldType ( int ordinal ) : Type
ordinal int
리턴 Type

GetFieldValue() 공개 메소드

public GetFieldValue ( int ordinal ) : T
ordinal int
리턴 T

GetFieldValueAsync() 공개 메소드

public GetFieldValueAsync ( int ordinal, CancellationToken cancellationToken ) : Task
ordinal int
cancellationToken CancellationToken
리턴 Task

GetFloat() 공개 메소드

public GetFloat ( int ordinal ) : float
ordinal int
리턴 float

GetGuid() 공개 메소드

public GetGuid ( int ordinal ) : Guid
ordinal int
리턴 Guid

GetInt16() 공개 메소드

public GetInt16 ( int ordinal ) : short
ordinal int
리턴 short

GetInt32() 공개 메소드

public GetInt32 ( int ordinal ) : int
ordinal int
리턴 int

GetInt64() 공개 메소드

public GetInt64 ( int ordinal ) : long
ordinal int
리턴 long

GetName() 공개 메소드

public GetName ( int ordinal ) : string
ordinal int
리턴 string

GetOrdinal() 공개 메소드

public GetOrdinal ( string name ) : int
name string
리턴 int

GetProviderSpecificFieldType() 공개 메소드

public GetProviderSpecificFieldType ( int ordinal ) : Type
ordinal int
리턴 Type

GetProviderSpecificValue() 공개 메소드

public GetProviderSpecificValue ( int ordinal ) : object
ordinal int
리턴 object

GetProviderSpecificValues() 공개 메소드

public GetProviderSpecificValues ( Array values ) : int
values Array
리턴 int

GetSchemaTable() 공개 메소드

public GetSchemaTable ( ) : DataTable
리턴 DataTable

GetStream() 공개 메소드

public GetStream ( int ordinal ) : Stream
ordinal int
리턴 Stream

GetString() 공개 메소드

public GetString ( int ordinal ) : string
ordinal int
리턴 string

GetTextReader() 공개 메소드

public GetTextReader ( int ordinal ) : TextReader
ordinal int
리턴 TextReader

GetValue() 공개 메소드

public GetValue ( int ordinal ) : object
ordinal int
리턴 object

GetValues() 공개 메소드

public GetValues ( Array values ) : int
values Array
리턴 int

IsDBNull() 공개 메소드

public IsDBNull ( int ordinal ) : bool
ordinal int
리턴 bool

IsDBNullAsync() 공개 메소드

public IsDBNullAsync ( int ordinal, CancellationToken cancellationToken ) : Task
ordinal int
cancellationToken CancellationToken
리턴 Task

NextResult() 공개 메소드

public NextResult ( ) : bool
리턴 bool

NextResultAsync() 공개 메소드

public NextResultAsync ( CancellationToken cancellationToken ) : Task
cancellationToken CancellationToken
리턴 Task

Read() 공개 메소드

public Read ( ) : bool
리턴 bool

ReadAsync() 공개 메소드

public ReadAsync ( CancellationToken cancellationToken ) : Task
cancellationToken CancellationToken
리턴 Task

this() 공개 메소드

public this ( int ordinal ) : object
ordinal int
리턴 object

this() 공개 메소드

public this ( string name ) : object
name string
리턴 object