Table of Contents

Class OperationCallEventArgs

Namespace
NMF.Models
Assembly
NMF.Models.dll

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 IModelElement

The target model element

operation IOperation

The 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

IOperation

Result

Gets or sets the result of the call

public object Result { get; set; }

Property Value

object

Target

The target

public IModelElement Target { get; }

Property Value

IModelElement