ข้ามไปยังเนื้อหา

Class TenantInvitationDeliverySenderResult

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.MultiTenancy.Governance.Services
Assembly: Cephalon.MultiTenancy.Governance.dll

Describes the outcome returned by a tenant invitation delivery sender.

public sealed class TenantInvitationDeliverySenderResult

objectTenantInvitationDeliverySenderResult

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

TenantInvitationDeliverySenderResult(string, bool, string?, string?, DateTimeOffset?, IReadOnlyDictionary<string, string>?)

Section titled “ TenantInvitationDeliverySenderResult(string, bool, string?, string?, DateTimeOffset?, IReadOnlyDictionary<string, string>?)”

Creates a tenant invitation delivery sender result.

public TenantInvitationDeliverySenderResult(string outcome, bool dispatched, string? providerMessageId = null, string? reason = null, DateTimeOffset? dispatchedAtUtc = null, IReadOnlyDictionary<string, string>? metadata = null)

outcome string

The sender outcome.

dispatched bool

A value indicating whether the sender accepted the dispatch.

providerMessageId string?

The provider message identifier returned by the sender.

reason string?

The provider-facing outcome reason.

dispatchedAtUtc DateTimeOffset?

The UTC timestamp reported by the sender.

metadata IReadOnlyDictionary<string, string>?

Optional sender metadata.

Gets a value indicating whether the sender accepted the dispatch.

public bool Dispatched { get; }

bool

Gets the UTC timestamp reported by the sender.

public DateTimeOffset? DispatchedAtUtc { get; }

DateTimeOffset?

Gets optional sender metadata.

public IReadOnlyDictionary<string, string> Metadata { get; }

IReadOnlyDictionary<string, string>

Gets the sender outcome.

public string Outcome { get; }

string

Gets the provider message identifier returned by the sender.

public string? ProviderMessageId { get; }

string?

Gets the provider-facing outcome reason.

public string? Reason { get; }

string?