Partager via


EventBindingService.IsExistingMethodName, méthode

En cas de substitution dans une classe dérivée, détermine si un nom de méthode qui gère un événement spécifié existe déjà.

Espace de noms :  Microsoft.Windows.Design.Services
Assembly :  Microsoft.Windows.Design.Interaction (dans Microsoft.Windows.Design.Interaction.dll)

Syntaxe

'Déclaration
Public MustOverride Function IsExistingMethodName ( _
    modelEvent As ModelEvent, _
    methodName As String _
) As Boolean
public abstract bool IsExistingMethodName(
    ModelEvent modelEvent,
    string methodName
)
public:
virtual bool IsExistingMethodName(
    ModelEvent^ modelEvent, 
    String^ methodName
) abstract
abstract IsExistingMethodName : 
        modelEvent:ModelEvent * 
        methodName:string -> bool 
public abstract function IsExistingMethodName(
    modelEvent : ModelEvent, 
    methodName : String
) : boolean

Paramètres

  • methodName
    Type : System.String
    Nom de la méthode à vérifier.

Valeur de retour

Type : System.Boolean
true si le nom de la méthode qui gère modelEvent existe déjà ; sinon, false.

Notes

Par exemple, si une méthode nommée Button1_Click existe déjà et gère l'événement Click pour Button1, cette méthode doit alors retourner la valeur true.

Sécurité .NET Framework

Voir aussi

Référence

EventBindingService Classe

Microsoft.Windows.Design.Services, espace de noms

ModelEditingScope

ModelEventCollection

Autres ressources

Architecture de l'extensibilité du Concepteur WPF