Interface IStranglerFigRuntimeCatalog
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Abstractions.Patterns
Assembly: Cephalon.Abstractions.dll
Exposes the strangler-fig routes visible to the current runtime.
public interface IStranglerFigRuntimeCatalogProperties
Section titled “Properties”Routes
Section titled “ Routes”Gets all strangler-fig routes visible to the current runtime.
IReadOnlyList<StranglerFigRouteDescriptor> Routes { get; }Property Value
Section titled “Property Value”IReadOnlyList<StranglerFigRouteDescriptor>
Methods
Section titled “Methods”GetById(string)
Section titled “ GetById(string)”Gets one strangler-fig route by its stable identifier.
StranglerFigRouteDescriptor? GetById(string routeId)Parameters
Section titled “Parameters”routeId string
The route identifier to resolve.
Returns
Section titled “Returns”The matching route descriptor, or null when it is not active.
GetBySourceModule(string)
Section titled “ GetBySourceModule(string)”Gets all strangler-fig routes owned by the requested module.
IReadOnlyList<StranglerFigRouteDescriptor> GetBySourceModule(string sourceModuleId)Parameters
Section titled “Parameters”sourceModuleId string
The module identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<StranglerFigRouteDescriptor>
The matching route descriptors, or an empty list when none are active.