Interface ITenantDomainOwnershipStore
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.MultiTenancy.Governance.Services
Assembly: Cephalon.MultiTenancy.Governance.dll
Stores runtime tenant-domain ownership declarations managed by the multi-tenancy governance companion pack.
public interface ITenantDomainOwnershipStoreProperties
Section titled “Properties”Gets the number of stored runtime tenant-domain ownership declarations.
int Count { get; }Property Value
Section titled “Property Value”DomainOwnerships
Section titled “ DomainOwnerships”Gets the stored runtime tenant-domain ownership declarations.
IReadOnlyList<TenantDomainOwnershipDescriptor> DomainOwnerships { get; }Property Value
Section titled “Property Value”IReadOnlyList<TenantDomainOwnershipDescriptor>
IsDurable
Section titled “ IsDurable”Gets a value indicating whether tenant-domain ownership 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(TenantDomainOwnershipDescriptor)
Section titled “ Upsert(TenantDomainOwnershipDescriptor)”Creates or replaces one stored runtime tenant-domain ownership declaration.
void Upsert(TenantDomainOwnershipDescriptor domainOwnership)Parameters
Section titled “Parameters”domainOwnership TenantDomainOwnershipDescriptor
The tenant-domain ownership declaration to store.