PropertyBagContainsKey Method |
Determines whether the
PropertyBag contains a property with the specified name.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.5
Syntaxpublic 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
- Type: SystemString
The name of the property to locate.
Return Value
Type:
BooleanTrue if the
PropertyBag contains a property with the specified name,
false otherwise.
Implements
IDictionaryTKey, TValueContainsKey(TKey)
See Also