Method | Description | |
---|---|---|
LiaraResponse ( ILiaraContext context ) : System.Security.Claims | ||
Synchronize ( ) : void | ||
Write ( byte data ) : void |
Writes the given bytes to the response body stream.
|
|
Write ( byte data, int offset, int count ) : void |
Writes the given bytes to the response body stream.
|
|
Write ( string text ) : void |
Writes the given text to the response body stream using UTF-8.
|
|
WriteAsync ( byte data ) : Task |
Asynchronously writes the given bytes to the response body stream.
|
|
WriteAsync ( byte data, |
Asynchronously writes the given bytes to the response body stream.
|
|
WriteAsync ( byte data, int offset, int count, |
Asynchronously writes the given bytes to the response body stream.
|
|
WriteAsync ( string text ) : Task |
Asynchronously writes the given text to the response body stream using UTF-8.
|
|
WriteAsync ( string text, |
Asynchronously writes the given text to the response body stream using UTF-8.
|
public LiaraResponse ( ILiaraContext context ) : System.Security.Claims | ||
context | ILiaraContext | |
return | System.Security.Claims |
public Write ( byte data, int offset, int count ) : void | ||
data | byte | The response data. |
offset | int |
/// The zero-based byte offset in the |
count | int | The number of bytes to write. |
return | void |
public Write ( string text ) : void | ||
text | string | The response data. |
return | void |
public WriteAsync ( byte data ) : Task | ||
data | byte | The response data. |
return | Task |
public WriteAsync ( byte data, |
||
data | byte | The response data. |
token | A token used to indicate cancellation. | |
return | Task |
public WriteAsync ( byte data, int offset, int count, |
||
data | byte | The response data. |
offset | int |
/// The zero-based byte offset in the |
count | int | The number of bytes to write. |
token | A token used to indicate cancellation. | |
return | Task |
public WriteAsync ( string text ) : Task | ||
text | string | The response data. |
return | Task |
public WriteAsync ( string text, |
||
text | string | The response data. |
token | A token used to indicate cancellation. | |
return | Task |