File: System\Deployment\Internal\Isolation\IEnumSTORE_CATEGORY.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;
using System.Security;
 
namespace System.Deployment.Internal.Isolation
{
    [Guid("b840a2f5-a497-4a6d-9038-cd3ec2fbd222")]
    [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
    internal interface IEnumSTORE_CATEGORY
    {
        [SecurityCritical]
        IEnumSTORE_CATEGORY Clone();
        [SecurityCritical]
        uint Next(uint celt, STORE_CATEGORY[] rgElements);
        [SecurityCritical]
        void Reset();
        [SecurityCritical]
        void Skip(uint ulElements);
    }
}