Interface ITenantInvitationDeliveryRunCatalog
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.MultiTenancy.Governance.Services
Assembly: Cephalon.MultiTenancy.Governance.dll
Exposes runtime tenant invitation delivery dispatch attempts observed by the governance companion pack.
public interface ITenantInvitationDeliveryRunCatalogProperties
Section titled “Properties”Gets the number of recorded tenant invitation delivery dispatch attempts.
int Count { get; }Property Value
Section titled “Property Value”LatestRun
Section titled “ LatestRun”Gets the latest recorded tenant invitation delivery dispatch attempt when one exists.
TenantInvitationDeliveryRunDescriptor? LatestRun { get; }Property Value
Section titled “Property Value”TenantInvitationDeliveryRunDescriptor?
Gets the recorded tenant invitation delivery dispatch attempts.
IReadOnlyList<TenantInvitationDeliveryRunDescriptor> Runs { get; }Property Value
Section titled “Property Value”IReadOnlyList<TenantInvitationDeliveryRunDescriptor>
Methods
Section titled “Methods”GetByInvitationId(string)
Section titled “ GetByInvitationId(string)”Gets recorded tenant invitation delivery dispatch attempts for one invitation identifier.
IReadOnlyList<TenantInvitationDeliveryRunDescriptor> GetByInvitationId(string invitationId)Parameters
Section titled “Parameters”invitationId string
The invitation identifier.
Returns
Section titled “Returns”IReadOnlyList<TenantInvitationDeliveryRunDescriptor>
The matching dispatch attempts.
GetByTenantId(string)
Section titled “ GetByTenantId(string)”Gets recorded tenant invitation delivery dispatch attempts for one tenant.
IReadOnlyList<TenantInvitationDeliveryRunDescriptor> GetByTenantId(string tenantId)Parameters
Section titled “Parameters”tenantId string
The tenant identifier.
Returns
Section titled “Returns”IReadOnlyList<TenantInvitationDeliveryRunDescriptor>
The matching dispatch attempts.