C# Class DotNetWorkQueue.Configuration.TransportInitDuplex

This class allows a transport to inject its dependencies into the root container.
This represents a duplex transport that can both send and receive.
Inheritance: ITransportInitDuplex
Afficher le fichier Open project: blehnen/DotNetWorkQueue

Méthodes publiques

Méthode Description
RegisterImplementations ( IContainer container, RegistrationTypes registrationType, string connection, string queue ) : void

Allows a transport to register its dependencies in the IoC container.

SetDefaultsIfNeeded ( IContainer container, RegistrationTypes registrationType, ConnectionTypes connectionType ) : void

Allows the transport to set default configuration settings or other values

SuppressWarningsIfNeeded ( IContainer container, RegistrationTypes registrationType ) : void

Allows a transport to suppress specific warnings for specific types if need.

Method Details

RegisterImplementations() public abstract méthode

Allows a transport to register its dependencies in the IoC container.
public abstract RegisterImplementations ( IContainer container, RegistrationTypes registrationType, string connection, string queue ) : void
container IContainer The container.
registrationType RegistrationTypes Type of the registration.
connection string The connection.
queue string The queue.
Résultat void

SetDefaultsIfNeeded() public méthode

Allows the transport to set default configuration settings or other values
public SetDefaultsIfNeeded ( IContainer container, RegistrationTypes registrationType, ConnectionTypes connectionType ) : void
container IContainer The container.
registrationType RegistrationTypes Type of the registration.
connectionType ConnectionTypes Type of the requested connection.
Résultat void

SuppressWarningsIfNeeded() public méthode

Allows a transport to suppress specific warnings for specific types if need.
public SuppressWarningsIfNeeded ( IContainer container, RegistrationTypes registrationType ) : void
container IContainer The container.
registrationType RegistrationTypes Type of the registration.
Résultat void