aspnet-devexpress-dot-web-dot-aspxgauges-dot-aspxgaugecontrol-ea8d69bc.md
Gets or sets a value indicating the mode in which the control’s images are stored on the server.
Namespace : DevExpress.Web.ASPxGauges
Assembly : DevExpress.Web.ASPxGauges.v25.2.dll
NuGet Package : DevExpress.Web.Visualization
[DefaultValue(BinaryStorageMode.Default)]
public BinaryStorageMode BinaryStorageMode { get; set; }
<DefaultValue(BinaryStorageMode.Default)>
Public Property BinaryStorageMode As BinaryStorageMode
| Type | Default | Description |
|---|---|---|
| BinaryStorageMode | Default |
A BinaryStorageMode enumeration value indicating the storage mode.
|
Available values:
| Name | Description |
|---|---|
| Default |
The Cache mode is used if another configuration isn’t defined by the BinaryStorageConfigurator.Mode field.
| | Cache |
Binary data is stored within a cache.
| | Session |
Binary data is stored within a session.
| | Custom |
Custom mode provides for implementing a custom scenario for storing and accessing binary data.
|
To learn more, see the Binary Storage Configuration topic.
See Also