Table of Contents

Interface IOperationHandler<TInput, TResult>.IWrapper

Namespace
NexusRpc.Handlers
Assembly
NexusRpc.dll

Support for accessing the underlying handler for when handlers are wrapped.

public interface IOperationHandler<TInput, TResult>.IWrapper

Properties

Underlying

Gets the immediate underlying handler.

IOperationHandler<TInput, TResult> Underlying { get; }

Property Value

IOperationHandler<TInput, TResult>

Remarks

This is often only useful in middleware that needs to access a handler instance. Users may need to continually invoke this if they need further wrapped handlers.