IRequestSessionChannel.cs 397 B

123456789101112
  1. //----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //----------------------------------------------------------------------------
  4. namespace System.ServiceModel.Channels
  5. {
  6. using System;
  7. public interface IRequestSessionChannel
  8. : IRequestChannel, ISessionChannel<IOutputSession>
  9. {
  10. }
  11. }