Table of Contents

Class BusOptions

Namespace
Silverback.Messaging.Configuration
Assembly
Silverback.Core.dll

Stores the message bus configuration (subscribers, etc.).

public class BusOptions
Inheritance
BusOptions
Inherited Members

Constructors

BusOptions()

public BusOptions()

Properties

MessageTypes

Gets the collection of handled message types. These types will be recognized as messages and thus automatically republished when returned by a subscribed method.

public IList<Type> MessageTypes { get; }

Property Value

IList<Type>

Subscriptions

Gets the collection of ISubscription. A single subscription can resolve to multiple subscribed methods.

public IList<ISubscription> Subscriptions { get; }

Property Value

IList<ISubscription>