Udostępnij za pośrednictwem


AssemblyInstaller.CommandLine Właściwość

Definicja

Pobiera lub ustawia wiersz polecenia do użycia podczas tworzenia nowego InstallContext obiektu na potrzeby instalacji zestawu.

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()

Wartość właściwości

String[]

Tablica typu String reprezentująca wiersz polecenia do użycia podczas tworzenia nowego InstallContext obiektu na potrzeby instalacji zestawu.

Przykłady

W poniższym przykładzie CommandLine właściwość obiektu AssemblyInstaller jest ustawiona na nazwę pliku dziennika.

// 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

Dotyczy

Zobacz też