Interface IResources
A reource type that can store new response messages at runtime
Inherited Members
Namespace: FakeHttp
Assembly: FakeHttp.dll
Syntax
public interface IResources : IReadOnlyResources
Methods
| Improve this Doc View SourceStore(String, String, Stream)
Stores the data stream in the corresponding folder and file
Declaration
void Store(string folder, string fileName, Stream data)
Parameters
| Type | Name | Description |
|---|---|---|
| String | folder | The folder name |
| String | fileName | The file name |
| Stream | data | The data to store |
Store(String, String, String)
Stores the data string in the corresponding folder and file
Declaration
void Store(string folder, string fileName, string data)
Parameters
| Type | Name | Description |
|---|---|---|
| String | folder | The folder name |
| String | fileName | The file name |
| String | data | The data to store |