AssemblyInstaller.UseNewContext Proprietà
Definizione
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
Valore della proprietà
true
se è necessario creare un nuovo oggetto InstallContext per l'installazione dell'assembly, in caso contrario false
. Il valore predefinito è true
.
Esempio
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
Commenti
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.