C# Class Owin.ServiceStack.OwinHttpResponseAdapter

Inheritance: IHttpResponse
显示文件 Open project: thedillonb/Owin.ServiceStack Class Usage Examples

Public Methods

Method Description
AddHeader ( string name, string value ) : void
Close ( ) : void
End ( ) : void
Flush ( ) : void
OwinHttpResponseAdapter ( IOwinResponse response ) : Microsoft.Owin
Redirect ( string url ) : void
SetContentLength ( long contentLength ) : void
Write ( string text ) : void

Method Details

AddHeader() public method

public AddHeader ( string name, string value ) : void
name string
value string
return void

Close() public method

public Close ( ) : void
return void

End() public method

public End ( ) : void
return void

Flush() public method

public Flush ( ) : void
return void

OwinHttpResponseAdapter() public method

public OwinHttpResponseAdapter ( IOwinResponse response ) : Microsoft.Owin
response IOwinResponse
return Microsoft.Owin

Redirect() public method

public Redirect ( string url ) : void
url string
return void

SetContentLength() public method

public SetContentLength ( long contentLength ) : void
contentLength long
return void

Write() public method

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