IOutputSessionChannel.cs 395 B

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