Table of Contents

Interface IMediatrRegistration

Namespace
Whipstaff.MediatR
Assembly
Whipstaff.MediatR.dll

Details the registration information to be used to set up mediatr.

public interface IMediatrRegistration

Properties

NotificationHandlers

Gets a list of notification handlers to configure.

IList<Func<INotificationHandlerRegistrationHandler>> NotificationHandlers { get; }

Property Value

IList<Func<INotificationHandlerRegistrationHandler>>

RequestHandlers

Gets a list of request handlers to configure.

IList<Func<IRequestHandlerRegistrationHandler>> RequestHandlers { get; }

Property Value

IList<Func<IRequestHandlerRegistrationHandler>>

RequestPostProcessors

Gets a list of request post processors to configure.

IList<Func<IRequestPostProcessorRegistrationHandler>> RequestPostProcessors { get; }

Property Value

IList<Func<IRequestPostProcessorRegistrationHandler>>

RequestPreProcessors

Gets a list of request pre processors to configure.

IList<Func<IRequestPreProcessorRegistrationHandler>> RequestPreProcessors { get; }

Property Value

IList<Func<IRequestPreProcessorRegistrationHandler>>