Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function LoadResourceString ( _
ByRef guidPackage As Guid, _
culture As Integer, _
pszResourceName As String, _
<OutAttribute> ByRef pbstrValue As String _
) As Integer
'Usage
Dim instance As IVsResourceManager
Dim guidPackage As Guid
Dim culture As Integer
Dim pszResourceName As String
Dim pbstrValue As String
Dim returnValue As Integer
returnValue = instance.LoadResourceString(guidPackage, _
culture, pszResourceName, pbstrValue)
int LoadResourceString(
ref Guid guidPackage,
int culture,
string pszResourceName,
out string pbstrValue
)
int LoadResourceString(
[InAttribute] Guid% guidPackage,
[InAttribute] int culture,
[InAttribute] String^ pszResourceName,
[OutAttribute] String^% pbstrValue
)
abstract LoadResourceString :
guidPackage:Guid byref *
culture:int *
pszResourceName:string *
pbstrValue:string byref -> int
function LoadResourceString(
guidPackage : Guid,
culture : int,
pszResourceName : String,
pbstrValue : String
) : int
Parameters
- guidPackage
Type: System.Guid%
Guid of the package into which the string will be loaded.
- culture
Type: System.Int32
A LCID value specifying the culture for which the string is valid. Supplying a value of 0 will select the LCID that the user selected when the application was started.
- pszResourceName
Type: System.String
The name of the resource.
- pbstrValue
Type: System.String%
Pointer to the resource.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT LoadResourceString(
[in] REFGUID guidPackage,
[in] int culture,
[in, string] LPCOLESTR pszResourceName,
[out, retval] BSTR *pbstrValue
);
.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.