IRequestCache interface¶
Defined in
Namespace: Fusillade.Reactive
Assembly: Fusillade.Reactive.dll
Full name: Fusillade.Reactive.IRequestCache
Modifiers: public abstract
Summary¶
This Interface is a simple cache for HTTP requests and intentionally does not conform to HTTP caching rules.
Applies to
net10.0, net10.0-browserwasm1.0, net10.0-desktop1.0, net9.0, net9.0-browserwasm1.0, net9.0-desktop1.0, net8.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.2, net8.0-macos14.5, net8.0-tvos17.2, netstandard2.1, net462, net481
Methods¶
| Name | Summary |
|---|---|
| SaveAsync | Implement this method by saving the Body of the response. The response is already downloaded as a ByteArrayContent so you don't have to worry about consuming the stream. |
| FetchAsync | Implement this by loading the Body of the given request / key. |