ISettingsContains Method (String, NullableGuid) |
Indicates if the item
with the specified key/module is contains
in settings or on his inheritance.
Namespace:
AskiaPortalCmn.Common
Assembly:
AskiaPortalCmn (in AskiaPortalCmn.dll) Version: 1.7.0-build068
Syntax bool Contains(
string key,
Nullable<Guid> moduleGuid = null
)
Function Contains (
key As String,
Optional moduleGuid As Nullable(Of Guid) = Nothing
) As Boolean
bool Contains(
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:
Boolean
Returns true if the item with the specified key/module
is define in the settings or his inheritance.
See Also