PluginSettingsValues Property |
Gets a collection of property names and their values. Plugins should ensure the keys for the values
are unique across all plugins.
Namespace: VirtualRadar.Interface.SettingsAssembly: VirtualRadar.Interface (in VirtualRadar.Interface.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public NameValueCollection Values { get; }
Public ReadOnly Property Values As NameValueCollection
Get
public:
property NameValueCollection^ Values {
NameValueCollection^ get ();
}
member Values : NameValueCollection with get
Property Value
Type:
NameValueCollectionRemarks
This collection is shared by all plugins. The keys should be prefaced by a string unique to each plugin,
for example by the plugin ID string.
See Also