[This is preliminary documentation and subject to change.]

Returns a unique ID used for caching and identifying the settings for this plugin.


Namespace: MediaMallTechnologies.Plugin
Assembly: Util (in Util.dll)

Syntax

Visual Basic (Declaration)
ReadOnly Property ID As String
C#
string ID { get; }
C++
property string ID abstract  {
    String get();
}
J#
/** property */
public string get_ID();
JScript
public function get ID() : String

Property Value

The string ID for the settings for this plugin.

Remarks

The settings ID should be a GUID, to avoid name clashes with other plugins. This ID is only used for caching optional settings for the plugin, and is never displayed to the user.

See Also