Uwaga
Dostęp do tej strony wymaga autoryzacji. Może spróbować zalogować się lub zmienić katalogi.
Dostęp do tej strony wymaga autoryzacji. Możesz spróbować zmienić katalogi.
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
int GetErrorInfo(
out string pbstrErrText
)
int GetErrorInfo(
[OutAttribute] String^% pbstrErrText
)
abstract GetErrorInfo :
pbstrErrText:string byref -> int
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.