C# Class Caliburn.Micro.ActionExecutionContext

Inheritance: IDisposable
Show file Open project: dbuksbaum/Learning-Caliburn.Micro Class Usage Examples

Public Properties

Property Type Description
CanExecute Func
EventArgs object
Message ActionMessage
Method System.Reflection.MethodInfo
Source System.Windows.FrameworkElement
Target object
View System.Windows.DependencyObject

Public Methods

Method Description
this ( string key ) : object

Gets or sets additional data needed to invoke the action.

Method Details

this() public method

Gets or sets additional data needed to invoke the action.
public this ( string key ) : object
key string The data key.
return object

Property Details

CanExecute public property

Determines whether the action can execute.
Returns true if the action can execute, false otherwise.
public Func CanExecute
return Func

EventArgs public property

Any event arguments associated with the action's invocation.
public object EventArgs
return object

Message public property

The message being executed.
public ActionMessage Message
return ActionMessage

Method public property

The actual method info to be invoked.
public MethodInfo,System.Reflection Method
return System.Reflection.MethodInfo

Source public property

The source from which the message originates.
public FrameworkElement,System.Windows Source
return System.Windows.FrameworkElement

Target public property

The instance on which the action is invoked.
public object Target
return object

View public property

The view associated with the target.
public DependencyObject,System.Windows View
return System.Windows.DependencyObject