Interface ICellHealthIsolationCatalog
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Abstractions.Technologies
Assembly: Cephalon.Abstractions.dll
Exposes the cell health-isolation answers visible to the current runtime.
public interface ICellHealthIsolationCatalogProperties
Section titled “Properties”HealthIsolations
Section titled “ HealthIsolations”Gets all cell health-isolation answers visible to the current runtime.
IReadOnlyList<CellHealthIsolationDescriptor> HealthIsolations { get; }Property Value
Section titled “Property Value”IReadOnlyList<CellHealthIsolationDescriptor>
Methods
Section titled “Methods”GetByCellId(string)
Section titled “ GetByCellId(string)”Gets all cell health-isolation answers that govern the requested cell.
IReadOnlyList<CellHealthIsolationDescriptor> GetByCellId(string cellId)Parameters
Section titled “Parameters”cellId string
The cell identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<CellHealthIsolationDescriptor>
The matching cell health-isolation answers, or an empty list when none are active.
GetByDependencyId(string)
Section titled “ GetByDependencyId(string)”Gets all cell health-isolation answers that reference the requested dependency.
IReadOnlyList<CellHealthIsolationDescriptor> GetByDependencyId(string dependencyId)Parameters
Section titled “Parameters”dependencyId string
The dependency identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<CellHealthIsolationDescriptor>
The matching cell health-isolation answers, or an empty list when none are active.
GetById(string)
Section titled “ GetById(string)”Gets one cell health-isolation answer by its stable identifier.
CellHealthIsolationDescriptor? GetById(string healthIsolationId)Parameters
Section titled “Parameters”healthIsolationId string
The health-isolation identifier to resolve.
Returns
Section titled “Returns”CellHealthIsolationDescriptor?
The matching cell health-isolation answer, or null when it is not active.
GetBySourceModule(string)
Section titled “ GetBySourceModule(string)”Gets all cell health-isolation answers owned by the requested source module.
IReadOnlyList<CellHealthIsolationDescriptor> GetBySourceModule(string sourceModuleId)Parameters
Section titled “Parameters”sourceModuleId string
The source-module identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<CellHealthIsolationDescriptor>
The matching cell health-isolation answers, or an empty list when none are active.