C# Class System.IO.StringReader

Inheritance: TextReader
Exibir arquivo Open project: dotnet/corefx Class Usage Examples

Public Methods

Method Description
Close ( ) : void
Read ( ) : int
Read ( char buffer, int index, int count ) : int
ReadAsync ( char buffer, int index, int count ) : Task
ReadBlockAsync ( char buffer, int index, int count ) : Task
ReadLine ( ) : string
ReadLineAsync ( ) : Task
ReadToEnd ( ) : string
ReadToEndAsync ( ) : Task
StringReader ( string s ) : System.Diagnostics.Contracts

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
Peek ( ) : int

Method Details

Close() public method

public Close ( ) : void
return void

Dispose() protected method

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

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

ReadAsync() public method

public ReadAsync ( char buffer, int index, int count ) : Task
buffer char
index int
count int
return Task

ReadBlockAsync() public method

public ReadBlockAsync ( char buffer, int index, int count ) : Task
buffer char
index int
count int
return Task

ReadLine() public method

public ReadLine ( ) : string
return string

ReadLineAsync() public method

public ReadLineAsync ( ) : Task
return Task

ReadToEnd() public method

public ReadToEnd ( ) : string
return string

ReadToEndAsync() public method

public ReadToEndAsync ( ) : Task
return Task

StringReader() public method

public StringReader ( string s ) : System.Diagnostics.Contracts
s string
return System.Diagnostics.Contracts