MessageSort Enumeration
Describes characteristics of a message in an interaction.
Namespace: Microsoft.VisualStudio.Uml.Interactions
Assembly: Microsoft.VisualStudio.Uml.Interfaces (in Microsoft.VisualStudio.Uml.Interfaces.dll)
Syntax
[CLSCompliantAttribute(true)]
public enum MessageSort
[CLSCompliantAttribute(true)]
public enum class MessageSort
[<CLSCompliantAttribute(true)>]
type MessageSort
<CLSCompliantAttribute(True)>
Public Enumeration MessageSort
Members
Member name | Description | |
---|---|---|
AsynchCall | The message invokes an operation, and the sender does not wait for a reply. |
|
AsynchSignal | The message is a signal, and the sender does not wait for a reply. |
|
CreateMessage | The message invokes an operation that creates an instance. |
|
DeleteMessage | The message causes the deletion of an instance. |
|
Reply | This message represents the reply to a SynchCall message. |
|
SynchCall | The message invokes an operation, and the sender of the message waits for a reply. |
Remarks
Note
The methods defined on this type are extension methods. To use the methods, you must add a project reference to the .NET assembly Microsoft.VisualStudio.ArchitectureTools.Extensibility.dll, and you must include the directive using Microsoft.VisualStudio.ArchitectureTools.Extensibility.Uml; in your code.
See Also
Microsoft.VisualStudio.Uml.Interactions Namespace
Return to top