C# Class System.IO.TextReader.SynchronizedReader

Inheritance: TextReader
显示文件 Open project: runefs/Marvin

Public Methods

Method Description
Close ( ) : 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
SynchronizedReader ( TextReader reader ) : System

Method Details

Close() public method

public Close ( ) : void
return void

Peek() public method

public Peek ( ) : int
return int

Read() public method

public Read ( ) : int
return int

Read() public method

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

ReadBlock() public method

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

ReadLine() public method

public ReadLine ( ) : string
return string

ReadToEnd() public method

public ReadToEnd ( ) : string
return string

SynchronizedReader() public method

public SynchronizedReader ( TextReader reader ) : System
reader TextReader
return System