C# 클래스 PRI.ProductivityExtensions.SqlBytesExtensions.SqlBytesable

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

공개 메소드들

메소드 설명
Read ( this sqlbytes, System.Int64 offset, Byte buffer ) : System.Int64

Extends Read so that buffer offset of 0 and call to Array.Length are not needed. sqlbytes.Read(offset, buffer);

Write ( this sqlbytes, System.Int64 offset, Byte buffer ) : void

Extends Write so that buffer offset of 0 and call to Array.Length are not needed. sqlbytes.Write(offset, buffer);

메소드 상세

Read() 공개 정적인 메소드

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

Write() 공개 정적인 메소드

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