/ExpressInteropBinding/Microsoft.ServiceModel.Interop/WebLogic/WebLogicReliableSession.cs

# · C# · 25 lines · 12 code · 3 blank · 10 comment · 0 complexity · 1117a67de223fd95dff77a499b4d363c MD5 · raw file

  1. // <copyright file="WebLogicReliableSession.cs" company="Microsoft Corporation">
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // </copyright>
  4. namespace Microsoft.ServiceModel.Interop.WebLogic
  5. {
  6. using System.ServiceModel;
  7. /// <summary>
  8. /// Reliable session binding element for WebLogic
  9. /// </summary>
  10. public class WebLogicReliableSession : InteropReliableSession
  11. {
  12. /// <summary>
  13. /// Initializes a new instance of the WebLogicReliableSession class
  14. /// </summary>
  15. /// <param name="reliableSession">Reliable session binding element</param>
  16. public WebLogicReliableSession(OptionalReliableSession reliableSession)
  17. : base(reliableSession)
  18. {
  19. this.InnerReliableSession.Ordered = false;
  20. }
  21. }
  22. }