Gets a collection which can be used to get/set local custom credentials settings.

Namespace: ININ.IceLib.Connection
Assembly: ININ.IceLib (in ININ.IceLib.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public IDictionary<string, string> LocalCustomSettings { get; }
Visual Basic
Public ReadOnly Property LocalCustomSettings As IDictionary(Of String, String)
	Get

Field Value

The custom settings.

Remarks

This provides a facility for grouping custom settings with the CommonCredentials. For example, this can allow a custom application to store specialized Login dialog settings.

Unlike CustomSettings, LocalCustomSettings do not get sent to the server and are only intended to be a simple way to save connection-related settings, such as from an application's login dialog.

Note
LocalCustomSettings should be limited to connection-related settings and not used as a general application setting persistence scheme.

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also