PDFNetException Constructor |
Creates a new PDFNetException based on an existing Exception.
Namespace:
pdftron.Common
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public PDFNetException(
int hresult
)
Public Sub New (
hresult As Integer
)
public:
PDFNetException(
[InAttribute] int hresult
)
pdftron.Common.PDFNetException = function(hresult);
Parameters
- hresult
- Type: SystemInt32
The source HResult where the PDFNetException will be created from.
Remarks
If the source HResult is not associated with any PDFNet specific exceptions, a Platform.Exception class will be
created if possible. If a Platform.Exception cannot be created (i.e. invalid HResult or S_OK), all methods
in this class will return default and/or empty values (0 and empty strings).
See Also