ResourceDictionary.HasKey(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns whether the ResourceDictionary has an entry with the requested key.
public:
virtual bool HasKey(Platform::Object ^ key) = IMap<Platform::Object ^, Platform::Object ^>::HasKey;
bool HasKey(IInspectable const& key);
public bool HasKey(object key);
function hasKey(key)
Public Function HasKey (key As Object) As Boolean
Parameters
- key
-
Object
Platform::Object
IInspectable
The requested key.
Returns
Boolean
bool
true if the ResourceDictionary has an entry with the requested key; otherwise, false.
Implements
Remarks
Note
The equivalent Microsoft .NET API is Contains.