Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Executes all actions in the ActionCollection and returns their results.
Namespace: Microsoft.Xaml.Interactivity
Assembly: Microsoft.Xaml.Interactivity (in Microsoft.Xaml.Interactivity.dll)
Syntax
'Declaration
Public Shared Function ExecuteActions ( _
sender As Object, _
actions As ActionCollection, _
parameter As Object _
) As IEnumerable(Of Object)
public static IEnumerable<Object> ExecuteActions(
Object sender,
ActionCollection actions,
Object parameter
)
public:
static IEnumerable<Object^>^ ExecuteActions(
Object^ sender,
ActionCollection^ actions,
Object^ parameter
)
static member ExecuteActions :
sender:Object *
actions:ActionCollection *
parameter:Object -> IEnumerable<Object>
public static function ExecuteActions(
sender : Object,
actions : ActionCollection,
parameter : Object
) : IEnumerable<Object>
Parameters
sender
Type: System.ObjectThe Object which will be passed on to the action.
actions
Type: Microsoft.Xaml.Interactivity.ActionCollectionThe set of actions to execute.
parameter
Type: System.ObjectThe value of this parameter is determined by the calling behavior.
Return Value
Type: System.Collections.Generic.IEnumerable<Object>
The results of the executed actions.
.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.