We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Disabled by default
the response cache can be enabled by overriding GetCacheKey() which will cause subsequent calls to ExecuteAsync() to get the result from the cache.
GetCacheKey()
ExecuteAsync()
Note: Responses are cached per CommandKey.
CommandKey
To enable in a command:
protected override string GetCacheKey() { return "key"; }