C# 클래스 Npgsql.WriteBuffer

파일 보기 프로젝트 열기: npgsql/npgsql 1 사용 예제들

Private Properties

프로퍼티 타입 설명
Clear void
DirectWrite void
DirectWriteAsyncWithSyncContext Task
Flush void
FlushAsyncWithSyncContext Task
ResetTotalBytesFlushed void
WriteBuffer System
WriteChars void
WriteString void
WriteStringChunked void
WriteUInt32 void

공개 메소드들

메소드 설명
WriteByte ( byte b ) : void
WriteBytes ( byte buf, int offset, int count ) : void
WriteBytesNullTerminated ( byte buf ) : void
WriteDouble ( double d ) : void
WriteInt16 ( int i ) : void
WriteInt32 ( int i ) : void
WriteInt64 ( long i ) : void
WriteSingle ( float f ) : void
WriteUInt16 ( int i ) : void

비공개 메소드들

메소드 설명
Clear ( ) : void
DirectWrite ( byte buffer, int offset, int count ) : void
DirectWriteAsyncWithSyncContext ( byte buffer, int offset, int count, CancellationToken cancellationToken ) : Task This is a hack, see explanation in NpgsqlCommand.Send.
Flush ( ) : void
FlushAsyncWithSyncContext ( CancellationToken cancellationToken ) : Task This is a hack, see explanation in NpgsqlCommand.Send.
ResetTotalBytesFlushed ( ) : void
WriteBuffer ( [ connector, Stream stream, int size, Encoding textEncoding ) : System
WriteChars ( char chars, int len ) : void
WriteString ( string s, int len ) : void
WriteStringChunked ( char chars, int charIndex, int charCount, bool flush, int &charsUsed, bool &completed ) : void
WriteUInt32 ( uint i ) : void

메소드 상세

WriteByte() 공개 메소드

public WriteByte ( byte b ) : void
b byte
리턴 void

WriteBytes() 공개 메소드

public WriteBytes ( byte buf, int offset, int count ) : void
buf byte
offset int
count int
리턴 void

WriteBytesNullTerminated() 공개 메소드

public WriteBytesNullTerminated ( byte buf ) : void
buf byte
리턴 void

WriteDouble() 공개 메소드

public WriteDouble ( double d ) : void
d double
리턴 void

WriteInt16() 공개 메소드

public WriteInt16 ( int i ) : void
i int
리턴 void

WriteInt32() 공개 메소드

public WriteInt32 ( int i ) : void
i int
리턴 void

WriteInt64() 공개 메소드

public WriteInt64 ( long i ) : void
i long
리턴 void

WriteSingle() 공개 메소드

public WriteSingle ( float f ) : void
f float
리턴 void

WriteUInt16() 공개 메소드

public WriteUInt16 ( int i ) : void
i int
리턴 void