Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the local registry root.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetLocalRegistryRoot ( _
<OutAttribute> ByRef pbstrRoot As String _
) As Integer
int GetLocalRegistryRoot(
out string pbstrRoot
)
int GetLocalRegistryRoot(
[OutAttribute] String^% pbstrRoot
)
abstract GetLocalRegistryRoot :
pbstrRoot:string byref -> int
function GetLocalRegistryRoot(
pbstrRoot : String
) : int
Parameters
- pbstrRoot
Type: System.String%
[out] Pointer to a string that contains the local registry root.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
ILocalRegistry2.GetLocalRegistryRoot(String%)
Remarks
New packages should use GetLocalRegistryRootEx, which also returns the registry key to use for per-user or per-computer settings.
COM Signature
From objext.idl:
HRESULT ILocalRegistry3::GetLocalRegistryRoot(
[out] BSTR* pbstrRoot
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.