IInputSession.cs 340 B

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