PropertyBagContainsKey Method |
Determines whether the
PropertyBag contains a property with the specified name.
Namespace: Microsoft.ClearScriptAssembly: ClearScript.Core (in ClearScript.Core.dll) Version: 7.4.5
Syntax public bool ContainsKey(
string key
)
Public Function ContainsKey (
key As String
) As Boolean
public:
virtual bool ContainsKey(
String^ key
) sealed
abstract ContainsKey :
key : string -> bool
override ContainsKey :
key : string -> bool
Parameters
- key String
- The name of the property to locate.
Return Value
BooleanTrue if the
PropertyBag contains a property with the specified name,
false otherwise.
Implements
IDictionaryTKey, TValueContainsKey(TKey)See Also