Partager via


VCWebDeploymentTool.ApplicationProtection, propriété

Niveau d'isolation des processus utilisés par le répertoire virtuel.

Espace de noms :  Microsoft.VisualStudio.VCProjectEngine
Assembly :  Microsoft.VisualStudio.VCProjectEngine (dans Microsoft.VisualStudio.VCProjectEngine.dll)

Syntaxe

'Déclaration
Property ApplicationProtection As eAppProtectionOption
eAppProtectionOption ApplicationProtection { get; set; }
property eAppProtectionOption ApplicationProtection {
    eAppProtectionOption get ();
    void set (eAppProtectionOption value);
}
abstract ApplicationProtection : eAppProtectionOption with get, set
function get ApplicationProtection () : eAppProtectionOption 
function set ApplicationProtection (value : eAppProtectionOption)

Valeur de propriété

Type : Microsoft.VisualStudio.VCProjectEngine.eAppProtectionOption
Énumération eAppProtectionOption.

Notes

Cette propriété peut prendre l'une des valeurs d'eAppProtectionOption.

Notes

Le niveau intermédiaire est traité en tant qu'instantané le plus élevé sur Windows NT 4,0 car cette version des services IIS ne prend pas en charge le niveau intermédiaire.

Exemples

Consultez Comment : compiler l'exemple de code pour l'extensibilité du modèle de projet pour savoir comment compiler et exécuter cet exemple.

Le code exemple suivant utilise la propriété d'ApplicationProtection dans l'environnement de développement intégré (IDE) :

' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
   Sub Main()
      Dim prj As VCProject
      Dim cfgs, tools As IVCCollection
      Dim cfg As VCConfiguration
      Dim wdt As VCWebDeploymentTool
      prj = DTE.Solution.Projects.Item(1).Object
      cfgs = prj.Configurations
      cfg = cfgs.Item(1)
      wdt = cfg.Tools("VCWebDeploymentTool")
      wdt.ApplicationProtection = eAppProtectionOption.eAppProtectHigh
   End Sub
End Module

Sécurité .NET Framework

Voir aussi

Référence

VCWebDeploymentTool Interface

Microsoft.VisualStudio.VCProjectEngine, espace de noms