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

'Declaration
<CLSCompliantAttribute(True)> _
Public Enumeration MessageSort
[CLSCompliantAttribute(true)]
public enum MessageSort
[CLSCompliantAttribute(true)]
public enum class MessageSort
[<CLSCompliantAttribute(true)>]
type MessageSort
public enum MessageSort

Members

Member name Description
SynchCall The message invokes an operation, and the sender of the message waits for a reply.
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.

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

Reference

Microsoft.VisualStudio.Uml.Interactions Namespace