AssemblyInstaller.UseNewContext Proprietà
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta un valore che indica se creare un nuovo oggetto InstallContext per l'installazione dell'assembly.
public:
property bool UseNewContext { bool get(); void set(bool value); };
public bool UseNewContext { get; set; }
member this.UseNewContext : bool with get, set
Public Property UseNewContext As Boolean
true
se è necessario creare un nuovo oggetto InstallContext per l'installazione dell'assembly, in caso contrario false
. Il valore predefinito è true
.
Nell'esempio seguente viene creato un oggetto AssemblyInstaller richiamando il AssemblyInstaller costruttore. La UseNewContext proprietà di questo oggetto è impostata su true
e il Install metodo viene richiamato nell'assembly MyAssembly_HelpText.exe
. A causa di questo, i messaggi di log vengono visualizzati nella console.
// Create an Object* of the 'AssemblyInstaller' class.
AssemblyInstaller^ myAssemblyInstaller = gcnew AssemblyInstaller(
"MyAssembly_HelpText.exe", commandLineOptions );
// Set the 'UseNewContext' property to true.
myAssemblyInstaller->UseNewContext = true;
// Create an object of the 'AssemblyInstaller' class.
AssemblyInstaller myAssemblyInstaller = new
AssemblyInstaller( "MyAssembly_HelpText.exe", commandLineOptions );
// Set the 'UseNewContext' property to true.
myAssemblyInstaller.UseNewContext = true;
' Create an object of the 'AssemblyInstaller' class.
Dim myAssemblyInstaller As _
New AssemblyInstaller("MyAssembly_HelpText.exe", commandLineOptions)
' Set the 'UseNewContext' property to true.
myAssemblyInstaller.UseNewContext = True
Impostando questa proprietà per true
creare un nuovo file denominato "{Nome assembly}. InstallLog" per registrare i messaggi per questo assembly. Impostazione UseNewContext per false
impedire la creazione del nuovo file.
Prodotto | Versioni |
---|---|
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Feedback su .NET
.NET è un progetto di open source. Selezionare un collegamento per fornire feedback: