ServerComputer.Registry 属性

定义

获取一个对象,该对象提供用于操作注册表的属性和方法。

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

属性值

计算机的 My.Computer.Registry 对象。

示例

此示例从 HKEY_CURRENT_USER\Software\MyApp 中读取值Name并将其显示在消息框中。

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

注解

此属性提供对 RegistryProxy 对象的轻松访问。

适用于

另请参阅