IMailBeeWin32Exception Interface
When implemented by an exception class, indicates that this exception is thrown when underlying Win32 function returns an error.

Namespace: MailBee
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public interface IMailBeeWin32Exception

The IMailBeeWin32Exception type exposes the following members.

Properties
  NameDescription
Public propertyNativeErrorCode
The Win32 error code value returned by a function of Windows API.
Top
Remarks

Exceptions which implement IMailBeeWin32Exception can only be thrown by those methods of MailBee.NET assembly which make calls to unmanaged code. Although the assembly itself does not contain any unmanaged code, it still needs to call some Win32 functions related to security: TLS/SSL functionality, certificates, and Integrated Windows version of NTLM authentication.

The developer can obtain Win32 error code from NativeErrorCode property.
See Also