File: System\Deployment\Application\IMetaDataDispenser.cs
Project: System.Deployment.dll (System.Deployment)
#region Assembly System.Deployment, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.0\System.Deployment.dll
#endregion
 
using System.Runtime.InteropServices;
 
namespace System.Deployment.Application
{
    [Guid("809c652e-7396-11d2-9771-00a0c9b4d50c")]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    [TypeLibType(TypeLibTypeFlags.FRestricted)]
    internal interface IMetaDataDispenser
    {
        object DefineScope(ref Guid rclsid, uint dwCreateFlags, ref Guid riid);
        object OpenScope(string szScope, uint dwOpenFlags, ref Guid riid);
        object OpenScopeOnMemory(IntPtr pData, uint cbData, uint dwOpenFlags, ref Guid riid);
    }
}