Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the text of error messages.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function GetErrorInfo ( _
<OutAttribute> ByRef pbstrErrText As String _
) As Integer
'Usage
Dim instance As IVsUIShell
Dim pbstrErrText As String
Dim returnValue As Integer
returnValue = instance.GetErrorInfo(pbstrErrText)
int GetErrorInfo(
out string pbstrErrText
)
int GetErrorInfo(
[OutAttribute] String^% pbstrErrText
)
function GetErrorInfo(
pbstrErrText : String
) : int
Parameters
pbstrErrText
Type: System.String%[out] Pointer to a string containing the error text.
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 vsshell.idl:
HRESULT IVsUIShell::GetErrorInfo(
[out]BSTR *pbstrErrText
);
This method is equivalent to calling the Windows API GetErrorInfo.
.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.