IVsXMLMemberData3.GetExceptionTextAt(Int32, String, String) Method

Definition

Gets the exception text from the specified location.

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

Parameters

iException
Int32

[in] The position of the exception in the collection.

pbstrType
String

[out] The type of the exception.

pbstrText
String

[out] The text of the exception.

Returns

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

Remarks

COM Signature

From vsshell80.idl:

HRESULT IVsXMLMemberData3::GetExceptionTextAt(  
   [in] long iException,   
   [out] BSTR *pbstrType,   
   [out] BSTR *pbstrText  
);  

Applies to