C# Class System.Data.SqlTypes.SqlStreamChars

Inheritance: INullable, IDisposable
Show file Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
Close ( ) : void
Flush ( ) : void
Read ( char buffer, int offset, int count ) : int
ReadChar ( ) : int
Seek ( long offset, SeekOrigin origin ) : long
SetLength ( long value ) : void
Write ( char buffer, int offset, int count ) : void
WriteChar ( char value ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
IDisposable ( ) : void

Method Details

Close() public method

public Close ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Flush() public abstract method

public abstract Flush ( ) : void
return void

Read() public abstract method

public abstract Read ( char buffer, int offset, int count ) : int
buffer char
offset int
count int
return int

ReadChar() public method

public ReadChar ( ) : int
return int

Seek() public abstract method

public abstract Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
return long

SetLength() public abstract method

public abstract SetLength ( long value ) : void
value long
return void

Write() public abstract method

public abstract Write ( char buffer, int offset, int count ) : void
buffer char
offset int
count int
return void

WriteChar() public method

public WriteChar ( char value ) : void
value char
return void