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

Interface ITenantInvitationStore

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

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

Stores runtime tenant invitations managed by the multi-tenancy governance companion pack.

public interface ITenantInvitationStore

Gets the number of stored runtime tenant invitations.

int Count { get; }

int

Gets the stored runtime tenant invitations.

IReadOnlyList<TenantInvitationDescriptor> Invitations { get; }

IReadOnlyList<TenantInvitationDescriptor>

Gets a value indicating whether invitation state survives process restarts.

bool IsDurable { get; }

bool

Gets the ownership mode for the store implementation.

string Ownership { get; }

string

Gets the operator-facing store kind.

string StoreKind { get; }

string

Creates or replaces one stored runtime tenant invitation.

void Upsert(TenantInvitationDescriptor invitation)

invitation TenantInvitationDescriptor

The tenant invitation to store.