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.
Returns a UI library (DLL) file.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetUILibraryFileName ( _
lpstrPath As String, _
lpstrDllName As String, _
<OutAttribute> ByRef pbstrOut As String _
) As Integer
'Usage
Dim instance As IUIHostLocale2
Dim lpstrPath As String
Dim lpstrDllName As String
Dim pbstrOut As String
Dim returnValue As Integer
returnValue = instance.GetUILibraryFileName(lpstrPath, _
lpstrDllName, pbstrOut)
int GetUILibraryFileName(
string lpstrPath,
string lpstrDllName,
out string pbstrOut
)
int GetUILibraryFileName(
[InAttribute] String^ lpstrPath,
[InAttribute] String^ lpstrDllName,
[OutAttribute] String^% pbstrOut
)
abstract GetUILibraryFileName :
lpstrPath:string *
lpstrDllName:string *
pbstrOut:string byref -> int
function GetUILibraryFileName(
lpstrPath : String,
lpstrDllName : String,
pbstrOut : String
) : int
Parameters
- lpstrPath
Type: System.String
[in] Specifies the path to the DLL.
- lpstrDllName
Type: System.String
[in] Specifies DLL name.
- pbstrOut
Type: System.String%
[out] Pointer to a string containing the out.
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 uilocale.idl:
HRESULT IUIHostLocale2::GetUILibraryFileName(
[in] LPCOLESTR lpstrPath,
[in] LPCOLESTR lpstrDllName,
[out, retval] BSTR *pbstrOut
);
.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.