ISettingsItem Property (String, NullableGuid) |
Gets the settings item with the specified
key/module.
Namespace:
AskiaPortalCmn.Common
Assembly:
AskiaPortalCmn (in AskiaPortalCmn.dll) Version: 1.7.0-build068
Syntax ISettingsItem this[
string key,
Nullable<Guid> moduleGuid = null
] { get; }
ReadOnly Default Property Item (
key As String,
Optional moduleGuid As Nullable(Of Guid) = Nothing
) As ISettingsItem
Get
property ISettingsItem^ default[String^ key, Nullable<Guid> moduleGuid = nullptr] {
ISettingsItem^ get (String^ key, Nullable<Guid> moduleGuid = nullptr);
}
Parameters
- key
- Type: SystemString
Key of the settings item to obtain. - moduleGuid (Optional)
- Type: SystemNullableGuid
GUID of the module that contains the settings item.
It uses the current module Guid
if the value is null.
Return Value
Type:
ISettingsItem
Settings item with the specified key/module,
or null if the item is not found.
Remarks
This returns the item directly
attached to the settings or on his inheritance.
See Also