Interface ICellBoundaryCatalog
Namespace: Cephalon.Abstractions.Technologies
Assembly: Cephalon.Abstractions.dll
Exposes the cell boundaries visible to the current runtime.
public interface ICellBoundaryCatalogProperties
Section titled “Properties”CellBoundaries
Section titled “ CellBoundaries”Gets all cell boundaries visible to the current runtime.
IReadOnlyList<CellBoundaryDescriptor> CellBoundaries { get; }Property Value
Section titled “Property Value”IReadOnlyList<CellBoundaryDescriptor>
Methods
Section titled “Methods”GetById(string)
Section titled “ GetById(string)”Gets one cell boundary by its stable identifier.
CellBoundaryDescriptor? GetById(string cellId)Parameters
Section titled “Parameters”cellId string
The cell identifier to resolve.
Returns
Section titled “Returns”The matching cell boundary, or null when it is not active.
GetByModule(string)
Section titled “ GetByModule(string)”Gets all cell boundaries that include the requested module.
IReadOnlyList<CellBoundaryDescriptor> GetByModule(string moduleId)Parameters
Section titled “Parameters”moduleId string
The module identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<CellBoundaryDescriptor>
The matching cell boundaries, or an empty list when none are active.