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 TenantInvitationDeliverySenderResultInheritance
Section titled “Inheritance”object ← TenantInvitationDeliverySenderResult
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”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)Parameters
Section titled “Parameters”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.
Properties
Section titled “Properties”Dispatched
Section titled “ Dispatched”Gets a value indicating whether the sender accepted the dispatch.
public bool Dispatched { get; }Property Value
Section titled “Property Value”DispatchedAtUtc
Section titled “ DispatchedAtUtc”Gets the UTC timestamp reported by the sender.
public DateTimeOffset? DispatchedAtUtc { get; }Property Value
Section titled “Property Value”Metadata
Section titled “ Metadata”Gets optional sender metadata.
public IReadOnlyDictionary<string, string> Metadata { get; }Property Value
Section titled “Property Value”IReadOnlyDictionary<string, string>
Outcome
Section titled “ Outcome”Gets the sender outcome.
public string Outcome { get; }Property Value
Section titled “Property Value”ProviderMessageId
Section titled “ ProviderMessageId”Gets the provider message identifier returned by the sender.
public string? ProviderMessageId { get; }Property Value
Section titled “Property Value”Reason
Section titled “ Reason”Gets the provider-facing outcome reason.
public string? Reason { get; }