Condividi tramite


ServerComputer.Registry Proprietà

Definizione

Ottiene un oggetto che fornisce le proprietà e i metodi per la modifica del Registro di sistema.

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

Valore della proprietà

Oggetto My.Computer.Registry per il computer.

Esempio

Questo esempio legge il valore Name da HKEY_CURRENT_USER\Software\MyApp e lo visualizza in una finestra di messaggio.

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

Commenti

Questa proprietà consente di accedere facilmente all'oggetto RegistryProxy .

Si applica a

Vedi anche