EventBindingService.GetMethodHandlers Method
When overridden in a derived class, returns a list of methods that handle a specified event.
Namespace: Microsoft.Windows.Design.Services
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public MustOverride Function GetMethodHandlers ( _
modelEvent As ModelEvent _
) As IEnumerable(Of String)
public abstract IEnumerable<string> GetMethodHandlers(
ModelEvent modelEvent
)
public:
virtual IEnumerable<String^>^ GetMethodHandlers(
ModelEvent^ modelEvent
) abstract
abstract GetMethodHandlers :
modelEvent:ModelEvent -> IEnumerable<string>
public abstract function GetMethodHandlers(
modelEvent : ModelEvent
) : IEnumerable<String>
Parameters
- modelEvent
Type: Microsoft.Windows.Design.Model.ModelEvent
The event that is being handled.
Return Value
Type: System.Collections.Generic.IEnumerable<String>
The list of methods that handle modelEvent.
.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.Services Namespace