C# Класс PRI.ProductivityExtensions.SqlDataRecordExtensions.SqlDataRecordable

Class that contains extension methods that extend SqlDataRecord
Показать файл Открыть проект

Открытые методы

Метод Описание
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