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

Interface IBehaviorCatalog

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

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

Provides read access to all registered behavior topology descriptors.

public interface IBehaviorCatalog

Gets all registered behavior topology descriptors.

IReadOnlyList<BehaviorTopologyDescriptor> All { get; }

IReadOnlyList<BehaviorTopologyDescriptor>

Finds a behavior by identifier (case-insensitive), or returns null if not found.

BehaviorTopologyDescriptor? FindById(string behaviorId)

behaviorId string

BehaviorTopologyDescriptor?

Gets all behaviors registered with the specified pattern.

IReadOnlyList<BehaviorTopologyDescriptor> GetByPattern(string pattern)

pattern string

IReadOnlyList<BehaviorTopologyDescriptor>

Gets all behaviors registered with the specified transport.

IReadOnlyList<BehaviorTopologyDescriptor> GetByTransport(string transportId)

transportId string

IReadOnlyList<BehaviorTopologyDescriptor>