IInputSessionChannel.cs 384 B

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