다음을 통해 공유


ReliableSession.Ordered 속성

정의

메시지 배달 시 메시지를 보낸 순서를 유지할지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool Ordered { bool get(); void set(bool value); };
public bool Ordered { get; set; }
member this.Ordered : bool with get, set
Public Property Ordered As Boolean

속성 값

Boolean

메시지를 보낸 순서대로 배달해야 하면 true이고, 그렇지 않으면 false입니다. 기본값은 true입니다.

예제

// Create a new reliable session object
ReliableSessionBindingElement bindingElement = new ReliableSessionBindingElement();
ReliableSession reliableSession = new ReliableSession(bindingElement);

// Now you can access property values
Console.WriteLine("Ordered: {0}", reliableSession.Ordered);
Console.WriteLine("InactivityTimeout: {0}", reliableSession.InactivityTimeout);
' Create a new reliable session object
Dim bindingElement As ReliableSessionBindingElement = New ReliableSessionBindingElement()
Dim reliableSession As ReliableSession = New ReliableSession(bindingElement)

' Now you can access property values
Console.WriteLine("Ordered: {0}", reliableSession.Ordered)
Console.WriteLine("InactivityTimeout: {0}", reliableSession.InactivityTimeout)

설명

속성은 속성 값을 Ordered 가져오고 설정합니다.

적용 대상