영어로 읽기 편집

다음을 통해 공유


ReliableSession Constructors

Definition

Initializes a new instance of the ReliableSession class.

Overloads

ReliableSession()

Initializes a new instance of the ReliableSession class.

ReliableSession(ReliableSessionBindingElement)

Initializes a new instance of the ReliableSession class from a reliable session binding element.

ReliableSession()

Source:
ReliableSession.cs
Source:
ReliableSession.cs

Initializes a new instance of the ReliableSession class.

public ReliableSession ();

Applies to

.NET 8 (package-provided) 및 기타 버전
제품 버전
.NET 8 (package-provided)
.NET Framework 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)

ReliableSession(ReliableSessionBindingElement)

Source:
ReliableSession.cs
Source:
ReliableSession.cs

Initializes a new instance of the ReliableSession class from a reliable session binding element.

public ReliableSession (System.ServiceModel.Channels.ReliableSessionBindingElement reliableSessionBindingElement);

Parameters

reliableSessionBindingElement
ReliableSessionBindingElement

The ReliableSessionBindingElement whose property values are used to initialize the reliable session.

Exceptions

The reliableSessionBindingElement is null.

Examples

// 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);
reliableSession.Ordered = false;
Console.WriteLine("The new value for the Ordered property is: {0}", reliableSession.Ordered);

Applies to

.NET 8 (package-provided) 및 기타 버전
제품 버전
.NET 8 (package-provided)
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7 (package-provided), 4.7, 4.7.1 (package-provided), 4.7.1, 4.7.2 (package-provided), 4.7.2, 4.8 (package-provided), 4.8, 4.8.1
.NET Standard 2.0 (package-provided)