Compartilhar via


AssemblyInstaller.CommandLine Propriedade

Definição

Obtém ou define a linha de comando a ser usada ao criar um novo objeto InstallContext para a instalação do 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()

Valor da propriedade

String[]

Uma matriz do tipo String que representa a linha de comando a ser usada ao criar um novo InstallContext objeto para a instalação do assembly.

Exemplos

No exemplo a seguir, a CommandLine propriedade de um AssemblyInstaller é definida como o nome do arquivo de 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

Aplica-se a

Confira também