IVsObjectList.GetSourceContext(UInt32, IntPtr, UInt32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a source filename and line number for the given list item.
public:
int GetSourceContext(System::UInt32 index, IntPtr pszFilename, [Runtime::InteropServices::Out] System::UInt32 % pulLineNum);
public int GetSourceContext (uint index, IntPtr pszFilename, out uint pulLineNum);
abstract member GetSourceContext : uint32 * nativeint * uint32 -> int
Public Function GetSourceContext (index As UInteger, pszFilename As IntPtr, ByRef pulLineNum As UInteger) As Integer
Parameters
- index
- UInt32
[in] Specifies the index of the list item of interest.
- pszFilename
-
IntPtr
nativeint
[out] Pointer to a null terminated string containing the file name. You must allocate this buffer and free it on the list's final Release
, but you can reuse this buffer for multiple calls to this method.
- pulLineNum
- UInt32
[out] Specifies a line number.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsObjectList::GetSourceContext(
[in] ULONG Index,
[out] const WCHAR **pszFileName,
[out] ULONG *pulLineNum
);
This method is used to display the source file and line number in the find symbol results window. You can return E_NOTIMPL if you don't want to display this information.
Note
The text buffer is created by the IVsObjectList object and the buffer must persist for the life of the IVsObjectList object.
If you are implementing this interface in managed code and you need to have the string disposed of by the caller, implement the IVsCoTaskMemFreeMyStrings interface on the IVsObjectList interface.