IVsResourceManager.GetSatelliteAssemblyPath(String, Int32, String) Method

Definition

Retrieves the path to the satellite assembly

public:
 int GetSatelliteAssemblyPath(System::String ^ assemblyPath, int lcid, [Runtime::InteropServices::Out] System::String ^ % pbstrPath);
int GetSatelliteAssemblyPath(std::wstring const & assemblyPath, int lcid, [Runtime::InteropServices::Out] std::wstring const & & pbstrPath);
public int GetSatelliteAssemblyPath (string assemblyPath, int lcid, out string pbstrPath);
abstract member GetSatelliteAssemblyPath : string * int * string -> int
Public Function GetSatelliteAssemblyPath (assemblyPath As String, lcid As Integer, ByRef pbstrPath As String) As Integer

Parameters

assemblyPath
String

[in] Path to the assembly where the resource is to be loaded.

lcid
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
String

[out, retval] Path to the satellite assembly.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

COM Signature

From vsshell80.idl:

HRESULT GetSatelliteAssemblyPath(  
   [in, string] LPCOLESTR assemblyPath,   
   [in] int lcid,   
   [out, retval] BSTR *pbstrPath  
);  

Applies to