Bagikan melalui


ServerComputer.Registry Properti

Definisi

Mendapatkan objek yang menyediakan properti dan metode untuk memanipulasi registri.

public:
 property Microsoft::VisualBasic::MyServices::RegistryProxy ^ Registry { Microsoft::VisualBasic::MyServices::RegistryProxy ^ get(); };
public Microsoft.VisualBasic.MyServices.RegistryProxy Registry { get; }
member this.Registry : Microsoft.VisualBasic.MyServices.RegistryProxy
Public ReadOnly Property Registry As RegistryProxy

Nilai Properti

Objek My.Computer.Registry untuk komputer.

Contoh

Contoh ini membaca nilai Name dari HKEY_CURRENT_USER\Software\MyApp dan menampilkannya dalam kotak pesan.

Dim readValue As Object
readValue = My.Computer.Registry.GetValue(
  "HKEY_CURRENT_USER\Software\MyApp", "Name", Nothing)
MsgBox("The value is " & CStr(readValue))

Keterangan

Properti ini menyediakan akses mudah ke RegistryProxy objek .

Berlaku untuk

Lihat juga