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

Interface ICellBoundaryCatalog

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

Namespace: Cephalon.Abstractions.Technologies
Assembly: Cephalon.Abstractions.dll

Exposes the cell boundaries visible to the current runtime.

public interface ICellBoundaryCatalog

Gets all cell boundaries visible to the current runtime.

IReadOnlyList<CellBoundaryDescriptor> CellBoundaries { get; }

IReadOnlyList<CellBoundaryDescriptor>

Gets one cell boundary by its stable identifier.

CellBoundaryDescriptor? GetById(string cellId)

cellId string

The cell identifier to resolve.

CellBoundaryDescriptor?

The matching cell boundary, or null when it is not active.

Gets all cell boundaries that include the requested module.

IReadOnlyList<CellBoundaryDescriptor> GetByModule(string moduleId)

moduleId string

The module identifier to filter by.

IReadOnlyList<CellBoundaryDescriptor>

The matching cell boundaries, or an empty list when none are active.