C# Class FubuMVC.Core.Caching.RecordedOutput

Inheritance: IOutputState, IRecordedOutput
Mostrar archivo Open project: DarthFubuMVC/fubumvc Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
AddOutput ( IRecordedHttpOutput output ) : void
AppendHeader ( string header, string value ) : void
Flush ( ) : void
GetText ( ) : string
Headers ( ) : IEnumerable
IsEmpty ( ) : bool
RecordedOutput ( IFileSystem fileSystem ) : System
Replay ( IHttpResponse response ) : void
Write ( string renderedOutput ) : Task
Write ( string contentType, Task>.Func action ) : Task
Write ( string contentType, string renderedOutput ) : Task
WriteFile ( string contentType, string localFilePath, string displayName ) : void

Method Details

AddOutput() public method

public AddOutput ( IRecordedHttpOutput output ) : void
output IRecordedHttpOutput
return void

AppendHeader() public method

public AppendHeader ( string header, string value ) : void
header string
value string
return void

Flush() public method

public Flush ( ) : void
return void

GetText() public method

public GetText ( ) : string
return string

Headers() public method

public Headers ( ) : IEnumerable
return IEnumerable

IsEmpty() public method

public IsEmpty ( ) : bool
return bool

RecordedOutput() public method

public RecordedOutput ( IFileSystem fileSystem ) : System
fileSystem IFileSystem
return System

Replay() public method

public Replay ( IHttpResponse response ) : void
response IHttpResponse
return void

Write() public method

public Write ( string renderedOutput ) : Task
renderedOutput string
return Task

Write() public method

public Write ( string contentType, Task>.Func action ) : Task
contentType string
action Task>.Func
return Task

Write() public method

public Write ( string contentType, string renderedOutput ) : Task
contentType string
renderedOutput string
return Task

WriteFile() public method

public WriteFile ( string contentType, string localFilePath, string displayName ) : void
contentType string
localFilePath string
displayName string
return void