IVsPropertyPageFrame.ReportError Method
Reports a COM (HRESULT) error.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function ReportError ( _
hrErr As Integer _
) As Integer
int ReportError(
int hrErr
)
int ReportError(
int hrErr
)
abstract ReportError :
hrErr:int -> int
function ReportError(
hrErr : int
) : int
Parameters
hrErr
Type: Int32[in] An HRESULT.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
Use this method instead of ReportErrorInfo if the error comes from one of this interface's methods.
Using this method prevents displaying duplicate errors. The method shows the error only if the component supports IErrorInfo. Thus components that do not implement IErrorInfo that put up their own errors and return E_FAIL, won't show two error messages.
COM Signature
From vsshell.idl:
[C++]
HRESULT IVsPropertyPageFrame::ReportError(
HRESULT hrErr
);
.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.