Gets or sets the level of uniqueness of the ID transfer object.

Namespace:  C1.Web.UI.Controls.C1Gauge
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
[JsonAttribute(true, true, ImageIdGeneration.Unique)]
[DefaultValueAttribute(ImageIdGeneration.Unique)]
public ImageIdGeneration ImageIdGeneration { get; set; }
Visual Basic (Declaration)
<JsonAttribute(True, True, ImageIdGeneration.Unique)> _
<DefaultValueAttribute(ImageIdGeneration.Unique)> _
Public Property ImageIdGeneration As ImageIdGeneration
	Get
	Set

Remarks

When guage data is transferred from one page to another, IDs are created for the Session or Cache variables or for a filename in order to render a guage image. This property determines whether a unique ID is created each time the guage image is accessed (i.e. when the guage image is accessed by a single user), or if the same ID is to be used for the duration of the application life (i.e. when the identical guage image is accessed by multiple users or accessed repeatedly by a single user).

Note: The ImageIdGeneration property has no effect with the ImageRenderMethodEnum.File or ImageRenderMethodEnum.BinaryWrite.

See Also