C# Class Owin.Types.OwinResponse

Datei anzeigen Open project: owin/museum-piece-owin-hosting Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
OwinResponse ( OwinRequest request )
SendFileAsync ( string filePath ) : Task
SendFileAsync ( string filePath, CancellationToken cancel ) : Task
SendFileAsync ( string filePath, long offset, long count ) : Task
SendFileAsync ( string filePath, long offset, long count, CancellationToken cancel ) : Task
Write ( byte buffer ) : void
Write ( byte buffer, int offset, int count ) : void
Write ( string text ) : void
Write ( string text, Encoding encoding ) : void
WriteAsync ( byte buffer ) : Task
WriteAsync ( byte buffer, int offset, int count ) : Task
WriteAsync ( byte buffer, int offset, int count, CancellationToken cancel ) : Task
WriteAsync ( string text ) : Task
WriteAsync ( string text, CancellationToken cancel ) : Task
WriteAsync ( string text, Encoding encoding ) : Task
WriteAsync ( string text, Encoding encoding, CancellationToken cancel ) : Task

Method Details

OwinResponse() public method

public OwinResponse ( OwinRequest request )
request OwinRequest

SendFileAsync() public method

public SendFileAsync ( string filePath ) : Task
filePath string
return Task

SendFileAsync() public method

public SendFileAsync ( string filePath, CancellationToken cancel ) : Task
filePath string
cancel System.Threading.CancellationToken
return Task

SendFileAsync() public method

public SendFileAsync ( string filePath, long offset, long count ) : Task
filePath string
offset long
count long
return Task

SendFileAsync() public method

public SendFileAsync ( string filePath, long offset, long count, CancellationToken cancel ) : Task
filePath string
offset long
count long
cancel System.Threading.CancellationToken
return Task

Write() public method

public Write ( byte buffer ) : void
buffer byte
return void

Write() public method

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

Write() public method

public Write ( string text ) : void
text string
return void

Write() public method

public Write ( string text, Encoding encoding ) : void
text string
encoding System.Text.Encoding
return void

WriteAsync() public method

public WriteAsync ( byte buffer ) : Task
buffer byte
return Task

WriteAsync() public method

public WriteAsync ( byte buffer, int offset, int count ) : Task
buffer byte
offset int
count int
return Task

WriteAsync() public method

public WriteAsync ( byte buffer, int offset, int count, CancellationToken cancel ) : Task
buffer byte
offset int
count int
cancel System.Threading.CancellationToken
return Task

WriteAsync() public method

public WriteAsync ( string text ) : Task
text string
return Task

WriteAsync() public method

public WriteAsync ( string text, CancellationToken cancel ) : Task
text string
cancel System.Threading.CancellationToken
return Task

WriteAsync() public method

public WriteAsync ( string text, Encoding encoding ) : Task
text string
encoding System.Text.Encoding
return Task

WriteAsync() public method

public WriteAsync ( string text, Encoding encoding, CancellationToken cancel ) : Task
text string
encoding System.Text.Encoding
cancel System.Threading.CancellationToken
return Task