SendReportResult

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

Represents the result of sending a report.

public class SendReportResult

Inheritance

objectSendReportResult

Inherited Members

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

Constructors

SendReportResult(SendReportResponse)

Initializes a new instance of the class with a successful response.

public SendReportResult(SendReportResponse response)

Parameters

NameDescription

The response from sending the report.

SendReportResult(Exception)

Initializes a new instance of the class with an error response.

public SendReportResult(Exception ex)

Parameters

NameDescription

The exception that occurred during sending the report.

Properties

Error

Gets the error that occurred during sending the report, if any.

public Exception Error { get; }

Property Value

Exception

IsError

Gets a value indicating whether an error occurred during sending the report.

public bool IsError { get; }

Property Value

bool

ReportUid

Gets or sets the unique identifier of the sent report.

public string ReportUid { get; set; }

Property Value

string

Last updated