LicenseValidatedEventArgs

Namespace: Babel.Licensing Assembly: Babel.Licensing.dll

Provides data for the event.

public class LicenseValidatedEventArgs : EventArgs

Inheritance

objectEventArgsLicenseValidatedEventArgs

Inherited Members

EventArgs.Empty, object.GetType(), object.MemberwiseClone(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

LicenseValidatedEventArgs(string, ValidateLicenseResponse, ILicense)

Initializes a new instance of the class with the specified user key and response.

public LicenseValidatedEventArgs(string userKey, ValidateLicenseResponse response, ILicense license)

Parameters

NameDescription

The user key associated with the validated license.

The response received from the server when validating the license.

The validated license.

Properties

License

Gets the validated license.

public ILicense License { get; }

Property Value

ILicense

Response

Gets the response received from the server when validating the license.

public ValidateLicenseResponse Response { get; }

Property Value

ValidateLicenseResponse

UserKey

Gets the user key associated with the validating license.

public string UserKey { get; }

Property Value

string

Last updated