Condividi tramite


AssemblyInstaller.CommandLine Proprietà

Definizione

Ottiene o imposta la riga di comando da utilizzare durante la creazione di un nuovo oggetto InstallContext per l'installazione dell'assembly.

public:
 property cli::array <System::String ^> ^ CommandLine { cli::array <System::String ^> ^ get(); void set(cli::array <System::String ^> ^ value); };
public string[] CommandLine { get; set; }
member this.CommandLine : string[] with get, set
Public Property CommandLine As String()

Valore della proprietà

String[]

Matrice di tipo String che rappresenta la riga di comando da utilizzare durante la creazione di un nuovo oggetto InstallContext per l'installazione dell'assembly.

Esempio

Nell'esempio seguente la CommandLine proprietà di un AssemblyInstaller oggetto è impostata sul nome del file di log.

// Set the logfile name in the commandline argument array.
array<String^>^commandLineOptions = {"/LogFile=example.log"};
myAssemblyInstaller->CommandLine = commandLineOptions;
// Set the logfile name in the commandline argument array.
string[] commandLineOptions = new string[ 1 ] {"/LogFile=example.log"};
myAssemblyInstaller.CommandLine = commandLineOptions;
' Set the logfile name in the commandline argument array.
Dim commandLineOptions(0) As String
commandLineOptions(0) = "/LogFile=example.log"
myAssemblyInstaller.CommandLine = commandLineOptions

Si applica a

Vedi anche