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

Interface IHttpBehaviorBindingRegistry

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

Namespace: Cephalon.Behaviors.Http.Abstractions
Assembly: Cephalon.Behaviors.Http.dll

Provides lookup and enumeration of all registered instances.

public interface IHttpBehaviorBindingRegistry

Gets all registered bindings in registration order.

IReadOnlyList<IHttpBehaviorBinding> All { get; }

IReadOnlyList<IHttpBehaviorBinding>

Returns the binding registered for transportId, or null if none is registered.

IHttpBehaviorBinding? GetBinding(string transportId)

transportId string

The canonical transport identifier, e.g. http.jsonrpc.

IHttpBehaviorBinding?

The matching binding, or null.