C# 클래스 PRI.ProductivityExtensions.SqlDataRecordExtensions.SqlDataRecordable

Class that contains extension methods that extend SqlDataRecord
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
GetBytes ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Byte buffer ) : System.Int64

Extends GetBytes so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.GetBytes(ordinal, fieldOffset, buffer);

GetChars ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Char buffer ) : System.Int64

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.GetChars(ordinal, fieldOffset, buffer);

SetBytes ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Byte buffer ) : void

Extends SetBytes so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.SetBytes(ordinal, fieldOffset, buffer);

SetChars ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Char buffer ) : void

Extends SetChars so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.SetChars(ordinal, fieldOffset, buffer);

메소드 상세

GetBytes() 공개 정적인 메소드

Extends GetBytes so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.GetBytes(ordinal, fieldOffset, buffer);
public static GetBytes ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Byte buffer ) : System.Int64
sqldatarecord this
ordinal System.Int32
fieldOffset System.Int64
buffer Byte
리턴 System.Int64

GetChars() 공개 정적인 메소드

Extends GetChars so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.GetChars(ordinal, fieldOffset, buffer);
public static GetChars ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Char buffer ) : System.Int64
sqldatarecord this
ordinal System.Int32
fieldOffset System.Int64
buffer Char
리턴 System.Int64

SetBytes() 공개 정적인 메소드

Extends SetBytes so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.SetBytes(ordinal, fieldOffset, buffer);
public static SetBytes ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Byte buffer ) : void
sqldatarecord this
ordinal System.Int32
fieldOffset System.Int64
buffer Byte
리턴 void

SetChars() 공개 정적인 메소드

Extends SetChars so that buffer offset of 0 and call to Array.Length are not needed. sqldatarecord.SetChars(ordinal, fieldOffset, buffer);
public static SetChars ( this sqldatarecord, Int32 ordinal, System.Int64 fieldOffset, Char buffer ) : void
sqldatarecord this
ordinal System.Int32
fieldOffset System.Int64
buffer Char
리턴 void