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 ITenantInvitationStoreProperties
Section titled “Properties”Gets the number of stored runtime tenant invitations.
int Count { get; }Property Value
Section titled “Property Value”Invitations
Section titled “ Invitations”Gets the stored runtime tenant invitations.
IReadOnlyList<TenantInvitationDescriptor> Invitations { get; }Property Value
Section titled “Property Value”IReadOnlyList<TenantInvitationDescriptor>
IsDurable
Section titled “ IsDurable”Gets a value indicating whether invitation state survives process restarts.
bool IsDurable { get; }Property Value
Section titled “Property Value”Ownership
Section titled “ Ownership”Gets the ownership mode for the store implementation.
string Ownership { get; }Property Value
Section titled “Property Value”StoreKind
Section titled “ StoreKind”Gets the operator-facing store kind.
string StoreKind { get; }Property Value
Section titled “Property Value”Methods
Section titled “Methods”Upsert(TenantInvitationDescriptor)
Section titled “ Upsert(TenantInvitationDescriptor)”Creates or replaces one stored runtime tenant invitation.
void Upsert(TenantInvitationDescriptor invitation)Parameters
Section titled “Parameters”invitation TenantInvitationDescriptor
The tenant invitation to store.