123456789101112131415161718192021 |
- //------------------------------------------------------------------------------
- // <copyright file="IPersist.cs" company="Microsoft">
- // Copyright (c) Microsoft Corporation. All rights reserved.
- // </copyright>
- //------------------------------------------------------------------------------
- using System;
- using System.Runtime.InteropServices;
- using System.Security;
- namespace Experimental.System.Messaging.Interop
- {
- [ComImport(),
- Guid("0000010C-0000-0000-C000-000000000046"),
- InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
- internal interface IPersist
- {
- [SuppressUnmanagedCodeSecurity()]
- void GetClassID([Out] out Guid pClassID);
- }
- }
|