System.Deployment.Internal.Isolation.StoreOperationInstallDeployment.StoreOperationInstallDeployment C# (CSharp) Méthode

StoreOperationInstallDeployment() public méthode

public StoreOperationInstallDeployment ( IDefinitionAppId App, bool UninstallOthers, StoreApplicationReference reference ) : System
App IDefinitionAppId
UninstallOthers bool
reference StoreApplicationReference
Résultat System
        public StoreOperationInstallDeployment(IDefinitionAppId App, bool UninstallOthers, StoreApplicationReference reference)
        {
            this.Size = (uint) Marshal.SizeOf(typeof(StoreOperationInstallDeployment));
            this.Flags = OpFlags.Nothing;
            this.Application = App;
            if (UninstallOthers)
            {
                this.Flags |= OpFlags.UninstallOthers;
            }
            this.Reference = reference.ToIntPtr();
        }

Same methods

StoreOperationInstallDeployment::StoreOperationInstallDeployment ( IDefinitionAppId App, StoreApplicationReference reference ) : System
StoreOperationInstallDeployment