Class TenantInvitationDeliveryRetryRequest
Namespace: Cephalon.MultiTenancy.Governance.Services
Assembly: Cephalon.MultiTenancy.Governance.dll
Describes a bounded tenant invitation delivery retry runner request.
public sealed class TenantInvitationDeliveryRetryRequestInheritance
Section titled “Inheritance”object ← TenantInvitationDeliveryRetryRequest
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”TenantInvitationDeliveryRetryRequest(DateTimeOffset?, int?, bool, string?, string?, string?, IReadOnlyDictionary<string, string>?)
Section titled “ TenantInvitationDeliveryRetryRequest(DateTimeOffset?, int?, bool, string?, string?, string?, IReadOnlyDictionary<string, string>?)”Creates a tenant invitation delivery retry runner request.
public TenantInvitationDeliveryRetryRequest(DateTimeOffset? atUtc = null, int? maxItems = null, bool dueOnly = true, string? source = null, string? actor = null, string? correlationId = null, IReadOnlyDictionary<string, string>? metadata = null)Parameters
Section titled “Parameters”atUtc DateTimeOffset?
The UTC timestamp used for retry evaluation.
maxItems int?
The maximum number of retry entries to attempt.
dueOnly bool
A value indicating whether entries scheduled after atUtc should be skipped.
source string?
The source recorded on retry attempts.
actor string?
The actor recorded on retry attempts.
correlationId string?
The correlation identifier recorded on retry attempts.
metadata IReadOnlyDictionary<string, string>?
Optional retry runner metadata.
Properties
Section titled “Properties”Gets the actor recorded on retry attempts.
public string? Actor { get; }Property Value
Section titled “Property Value”Gets the UTC timestamp used for retry evaluation.
public DateTimeOffset? AtUtc { get; }Property Value
Section titled “Property Value”CorrelationId
Section titled “ CorrelationId”Gets the correlation identifier recorded on retry attempts.
public string? CorrelationId { get; }Property Value
Section titled “Property Value”DueOnly
Section titled “ DueOnly”Gets a value indicating whether entries scheduled after
public bool DueOnly { get; }Property Value
Section titled “Property Value”MaxItems
Section titled “ MaxItems”Gets the maximum number of retry entries to attempt.
public int? MaxItems { get; }Property Value
Section titled “Property Value”int?
Metadata
Section titled “ Metadata”Gets optional retry runner metadata.
public IReadOnlyDictionary<string, string> Metadata { get; }Property Value
Section titled “Property Value”IReadOnlyDictionary<string, string>
Source
Section titled “ Source”Gets the source recorded on retry attempts.
public string? Source { get; }