Piccolo.NET

PNotificationCenter.MatchingKeys Method 

Gets all keys that match the name/object pair.

protected virtual IList MatchingKeys(
   string name,
   object obj
);

Parameters

name
The name for which to find matching keys.
obj
The object for which to find matching keys.

Return Value

All keys that match the name/object pair.

Remarks

Either or both the name and the object can be null.

If both the name and the object are specified, only keys that match both of these values will be returned. If the name is null, all keys that match the object will be returned. If the object is null, all keys that match the name will be returned. And, If both the name and the object are null, all of the keys in the listeners map will be returned.

See Also

PNotificationCenter Class | UMD.HCIL.PiccoloX.Events Namespace