IChannelOptions.cs 619 B

12345678910111213141516171819
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. //-----------------------------------------------------------------------------
  4. namespace System.ServiceModel.ComIntegration
  5. {
  6. using System;
  7. using System.ServiceModel.Channels;
  8. using System.Runtime.InteropServices;
  9. using System.Collections.Generic;
  10. using System.ServiceModel;
  11. [ComImport,
  12. Guid("d1bc6624-f145-4904-ac39-1ee483c8ca9c"),
  13. InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIDispatch)]
  14. interface IChannelOptions
  15. {
  16. }
  17. }