C# Class UnitWrappers.System.IO.StreamReaderBase

Inheritance: IStreamReader
Mostrar archivo Open project: OpenSharp/UnitWrappers

Public Methods

Method Description
Close ( ) : void
DiscardBufferedData ( ) : void
Dispose ( ) : void
Peek ( ) : int
Read ( ) : int
Read ( char buffer, int index, int count ) : int
ReadBlock ( char buffer, int index, int count ) : int
ReadLine ( ) : string
ReadToEnd ( ) : string

Method Details

Close() public abstract method

public abstract Close ( ) : void
return void

DiscardBufferedData() public abstract method

public abstract DiscardBufferedData ( ) : void
return void

Dispose() public abstract method

public abstract Dispose ( ) : void
return void

Peek() public abstract method

public abstract Peek ( ) : int
return int

Read() public abstract method

public abstract Read ( ) : int
return int

Read() public abstract method

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

ReadBlock() public abstract method

public abstract ReadBlock ( char buffer, int index, int count ) : int
buffer char
index int
count int
return int

ReadLine() public abstract method

public abstract ReadLine ( ) : string
return string

ReadToEnd() public abstract method

public abstract ReadToEnd ( ) : string
return string