Class ConfigureDurableMessagesCommandSettings
Configures storing response bodies outside of renderer, so that these survive a cross-process navigation. If maxTotalBufferSize is not set, durable messages are disabled.
public sealed class ConfigureDurableMessagesCommandSettings : ICommand
- Inheritance
-
ConfigureDurableMessagesCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
MaxResourceBufferSize
Per-resource buffer size in bytes to use when preserving network payloads (XHRs, etc).
[JsonPropertyName("maxResourceBufferSize")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? MaxResourceBufferSize { get; set; }
Property Value
- long?
MaxTotalBufferSize
Buffer size in bytes to use when preserving network payloads (XHRs, etc).
[JsonPropertyName("maxTotalBufferSize")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public long? MaxTotalBufferSize { get; set; }
Property Value
- long?