Class OperationCallEventArgs
Denotes event args that an operation is or was called
public class OperationCallEventArgs : EventArgs
- Inheritance
-
OperationCallEventArgs
- Inherited Members
Constructors
OperationCallEventArgs(IModelElement, IOperation, params object[])
Creates a new instance
public OperationCallEventArgs(IModelElement target, IOperation operation, params object[] arguments)
Parameters
target
IModelElementThe target model element
operation
IOperationThe operation that was called
arguments
object[]The arguments
Properties
Arguments
The arguments
public object[] Arguments { get; }
Property Value
- object[]
Operation
The operation
public IOperation Operation { get; }
Property Value
Result
Gets or sets the result of the call
public object Result { get; set; }
Property Value
Target
The target
public IModelElement Target { get; }