Aracılığıyla paylaş


AssemblyInstaller.CommandLine Özellik

Tanım

Derlemenin yüklemesi için yeni InstallContext bir nesne oluştururken kullanılacak komut satırını alır veya ayarlar.

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

Özellik Değeri

String[]

Derlemenin yüklemesi için yeni InstallContext bir nesne oluştururken kullanılacak komut satırını temsil eden tür String dizisi.

Örnekler

Aşağıdaki örnekte, CommandLine bir AssemblyInstaller özelliğinin logfile adı olarak ayarlanmıştır.

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

Şunlara uygulanır

Ayrıca bkz.