C# Class Owin.Types.OwinResponse

Afficher le fichier Open project: owin/museum-piece-owin-hosting Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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 méthode

public OwinResponse ( OwinRequest request )
request OwinRequest

SendFileAsync() public méthode

public SendFileAsync ( string filePath ) : Task
filePath string
Résultat Task

SendFileAsync() public méthode

public SendFileAsync ( string filePath, CancellationToken cancel ) : Task
filePath string
cancel System.Threading.CancellationToken
Résultat Task

SendFileAsync() public méthode

public SendFileAsync ( string filePath, long offset, long count ) : Task
filePath string
offset long
count long
Résultat Task

SendFileAsync() public méthode

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

Write() public méthode

public Write ( byte buffer ) : void
buffer byte
Résultat void

Write() public méthode

public Write ( byte buffer, int offset, int count ) : void
buffer byte
offset int
count int
Résultat void

Write() public méthode

public Write ( string text ) : void
text string
Résultat void

Write() public méthode

public Write ( string text, Encoding encoding ) : void
text string
encoding System.Text.Encoding
Résultat void

WriteAsync() public méthode

public WriteAsync ( byte buffer ) : Task
buffer byte
Résultat Task

WriteAsync() public méthode

public WriteAsync ( byte buffer, int offset, int count ) : Task
buffer byte
offset int
count int
Résultat Task

WriteAsync() public méthode

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

WriteAsync() public méthode

public WriteAsync ( string text ) : Task
text string
Résultat Task

WriteAsync() public méthode

public WriteAsync ( string text, CancellationToken cancel ) : Task
text string
cancel System.Threading.CancellationToken
Résultat Task

WriteAsync() public méthode

public WriteAsync ( string text, Encoding encoding ) : Task
text string
encoding System.Text.Encoding
Résultat Task

WriteAsync() public méthode

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