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