ModelEvent.Handlers Property
When overridden in a derived class, gets a collection of method names that should handle this event.
Namespace: Microsoft.Windows.Design.Model
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Handlers As ICollection(Of String)
'Usage
Dim instance As ModelEvent
Dim value As ICollection(Of String)
value = instance.Handlers
public abstract ICollection<string> Handlers { get; }
public:
virtual property ICollection<String^>^ Handlers {
ICollection<String^>^ get () abstract;
}
public abstract function get Handlers () : ICollection<String>
Property Value
Type: System.Collections.Generic.ICollection<String>
An ICollection that represents the names of methods that should handle this event.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.Windows.Design.Model Namespace