Aracılığıyla paylaş


AssemblyInstaller.Path Özellik

Tanım

Yüklenecek derlemenin yolunu alır veya ayarlar.

public:
 property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
public string Path { get; set; }
member this.Path : string with get, set
Public Property Path As String

Özellik Değeri

Yüklenecek derlemenin yolu.

Örnekler

Aşağıdaki örnekte oluşturucu çağrılarak AssemblyInstaller bir AssemblyInstaller oluşturulur. Path Bu nesnenin özellikleri ayarlanır.

// Create an object of the 'AssemblyInstaller' class.
AssemblyInstaller^ myAssemblyInstaller = gcnew AssemblyInstaller;

// Set the path property of the AssemblyInstaller object.
myAssemblyInstaller->Path = "MyAssembly_Rollback.exe";
// Create an object of the 'AssemblyInstaller' class.
AssemblyInstaller myAssemblyInstaller = new AssemblyInstaller();

// Set the path property of the AssemblyInstaller object.
myAssemblyInstaller.Path = "MyAssembly_Rollback.exe";
' Create an object of the 'AssemblyInstaller' class.
Dim myAssemblyInstaller As New AssemblyInstaller()

' Set the path property of the AssemblyInstaller object.
myAssemblyInstaller.Path = "MyAssembly_Rollback.exe"

Şunlara uygulanır