Interface IBackendForFrontendRuntimeCatalog
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Abstractions.Patterns
Assembly: Cephalon.Abstractions.dll
Exposes the backend-for-frontend client bindings visible to the current runtime.
public interface IBackendForFrontendRuntimeCatalogProperties
Section titled “Properties”Bindings
Section titled “ Bindings”Gets all backend-for-frontend client bindings visible to the current runtime.
IReadOnlyList<BackendForFrontendClientBindingDescriptor> Bindings { get; }Property Value
Section titled “Property Value”IReadOnlyList<BackendForFrontendClientBindingDescriptor>
Methods
Section titled “Methods”GetByClientId(string)
Section titled “ GetByClientId(string)”Gets all backend-for-frontend client bindings owned by the requested client identifier.
IReadOnlyList<BackendForFrontendClientBindingDescriptor> GetByClientId(string clientId)Parameters
Section titled “Parameters”clientId string
The client identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<BackendForFrontendClientBindingDescriptor>
The matching client binding descriptors, or an empty list when none are active.
GetById(string)
Section titled “ GetById(string)”Gets one backend-for-frontend client binding by its stable identifier.
BackendForFrontendClientBindingDescriptor? GetById(string bindingId)Parameters
Section titled “Parameters”bindingId string
The binding identifier to resolve.
Returns
Section titled “Returns”BackendForFrontendClientBindingDescriptor?
The matching client binding descriptor, or null when it is not active.
GetBySourceModule(string)
Section titled “ GetBySourceModule(string)”Gets all backend-for-frontend client bindings owned by the requested module.
IReadOnlyList<BackendForFrontendClientBindingDescriptor> GetBySourceModule(string sourceModuleId)Parameters
Section titled “Parameters”sourceModuleId string
The module identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<BackendForFrontendClientBindingDescriptor>
The matching client binding descriptors, or an empty list when none are active.
GetByTransportId(string)
Section titled “ GetByTransportId(string)”Gets all backend-for-frontend client bindings that target the requested transport.
IReadOnlyList<BackendForFrontendClientBindingDescriptor> GetByTransportId(string transportId)Parameters
Section titled “Parameters”transportId string
The transport identifier to filter by.
Returns
Section titled “Returns”IReadOnlyList<BackendForFrontendClientBindingDescriptor>
The matching client binding descriptors, or an empty list when none are active.