IVsResourceManager::GetSatelliteAssemblyPath Method (String^, Int32, String^)
Visual Studio 2015
Retrieves the path to the satellite assembly
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int GetSatelliteAssemblyPath( String^ assemblyPath, int lcid, [OutAttribute] String^% pbstrPath )
Parameters
- assemblyPath
-
Type:
System::String^
[in] Path to the assembly where the resource is to be loaded.
- lcid
-
Type:
System::Int32
[in] A LCID value specifying the culture for which the resource is valid. Supplying a value of 0 will select the LCID that the user selected when the application was started.
- pbstrPath
-
Type:
System::String^
[out, retval] Path to the satellite assembly.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT GetSatelliteAssemblyPath( [in, string] LPCOLESTR assemblyPath, [in] int lcid, [out, retval] BSTR *pbstrPath );
Show: