Interface IOperationCall
The public interface for OperationCall
Inherited Members
Namespace: NMF.Models.Changes
Assembly: NMF.Models.dll
Syntax
[DefaultImplementationType(typeof(OperationCall))]
[XmlDefaultImplementationType(typeof(OperationCall))]
[ModelRepresentationClass("http://nmf.codeplex.com/changes#//OperationCall")]
public interface IOperationCall : IModelChange, IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
Properties
| Edit this page View SourceArguments
The arguments property
Declaration
[XmlElementName("arguments")]
[XmlAttribute(true)]
IListExpression<IOperationArgument> Arguments { get; }
Property Value
Type | Description |
---|---|
IListExpression<IOperationArgument> |
Operation
The operation property
Declaration
[XmlElementName("operation")]
[XmlAttribute(true)]
IOperation Operation { get; set; }
Property Value
Type | Description |
---|---|
IOperation |
TargetElement
The targetElement property
Declaration
[XmlElementName("targetElement")]
[XmlAttribute(true)]
IModelElement TargetElement { get; set; }
Property Value
Type | Description |
---|---|
IModelElement |
Events
| Edit this page View SourceOperationChanged
Gets fired when the Operation property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> OperationChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
OperationChanging
Gets fired before the Operation property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> OperationChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
TargetElementChanged
Gets fired when the TargetElement property changed its value
Declaration
event EventHandler<ValueChangedEventArgs> TargetElementChanged
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |
TargetElementChanging
Gets fired before the TargetElement property changes its value
Declaration
event EventHandler<ValueChangedEventArgs> TargetElementChanging
Event Type
Type | Description |
---|---|
EventHandler<ValueChangedEventArgs> |