Método EventBindingService.GetMethodHandlers
Quando substituído em uma classe derivada, retorna uma lista de métodos que manipulam um evento especificado.
Namespace: Microsoft.Windows.Design.Services
Assembly: Microsoft.Windows.Design.Interaction (em Microsoft.Windows.Design.Interaction.dll)
Sintaxe
'Declaração
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>
Parâmetros
- modelEvent
Tipo: Microsoft.Windows.Design.Model.ModelEvent
O evento que está sendo manipulado.
Valor de retorno
Tipo: System.Collections.Generic.IEnumerable<String>
A lista de métodos que manipulam modelEvent.
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.
Consulte também
Referência
Namespace Microsoft.Windows.Design.Services