DEXTUpload.NET Professional
menu toggleReferences > DEXTUpload.NET > DEXTUploadAuthenticateException

DEXTUpload.NET
Class DEXTUploadAuthenticateException

The minimum supported version
5.0.0.0
The minimum support environment
.NET Framework 4.0
Explanation

When running the DEXTUpload.NET Professional component, there is a step that authenticates license internally. The license authentication fails or the trial period expires, an exception occurs. The "DEXTUploadAuthenticateException" object that is created at this time has the information that records the cause of the error.

The "DEXTUploadAuthenticateException" class is not necessary to create as an instance directly by user.

Parent Class

Type
[Serializable]
public class DEXTUploadAuthenticateException : DEXTUploadException
Constructors

DEXTUploadAuthenticateException

  • Does initialization when creating an instance of the "DEXTUploadAuthenticateException" class.

  • Type

    public DEXTUploadAuthenticateException(LicenseState state)
    public DEXTUploadAuthenticateException(LicenseState state, string msg)
    public DEXTUploadAuthenticateException(LicenseState state, string msg, Exception innerException)
  • Parameters

    Name Type Explanation
    state DEXTUpload.NET.LicenseState Enumeration value indicating authentication status
    msg System.String The message that describes the reason for which the exception occurred
    innerException System.Exception The exception object caused
Properties

State

  • Brings the value of "DEXTUpload.NET.LicenseState" enumeration that indicates a product's status.

  • Type

    public LicenseState State { get; }

Message

  • Brings a message that describes the current exception.

  • Type

    public override string Message { get; }