IPersist.cs 761 B

123456789101112131415161718192021
  1. //------------------------------------------------------------------------------
  2. // <copyright file="IPersist.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. //------------------------------------------------------------------------------
  6. using System;
  7. using System.Runtime.InteropServices;
  8. using System.Security;
  9. namespace Experimental.System.Messaging.Interop
  10. {
  11. [ComImport(),
  12. Guid("0000010C-0000-0000-C000-000000000046"),
  13. InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
  14. internal interface IPersist
  15. {
  16. [SuppressUnmanagedCodeSecurity()]
  17. void GetClassID([Out] out Guid pClassID);
  18. }
  19. }