|
#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.Security;
namespace System.Deployment.Internal.Isolation
{
internal struct StoreOperationSetDeploymentMetadata
{
public IntPtr cPropertiesToSet;
public IntPtr cPropertiesToTest;
public IDefinitionAppId Deployment;
public OpFlags Flags;
public IntPtr InstallerReference;
public IntPtr PropertiesToSet;
public IntPtr PropertiesToTest;
public uint Size;
public StoreOperationSetDeploymentMetadata(IDefinitionAppId Deployment, StoreApplicationReference Reference, StoreOperationMetadataProperty[] SetProperties);
[SecuritySafeCritical]
public StoreOperationSetDeploymentMetadata(IDefinitionAppId Deployment, StoreApplicationReference Reference, StoreOperationMetadataProperty[] SetProperties, StoreOperationMetadataProperty[] TestProperties);
[SecurityCritical]
public void Destroy();
public enum Disposition
{
Failed,
Set = 2
}
[Flags]
public enum OpFlags
{
Nothing
}
}
} |