Skip to content

aarrgard/solidproxy

Repository files navigation

solidproxy

The solid proxy project can be used to implement and/or wrap registrations in an IoC container. It enables developers to register interceptors or middlewares similar to the ones used in the .Net Core Http stack.

public class MethodConsoleLogger<TObject, TMethod, TAdvice> 
   : ISolidProxyInvocationAdvice<TObject, TMethod, TAdvice>
{
    public async Task<TAdvice> Handle(
        Func<Task<TAdvice>> next, 
        ISolidProxyInvocation<TObject, TMethod, TAdvice> invocation)
    {
        try {
            Console.WriteLine($"Entering {invocation.Configuration.MethodInfo.Name}");
            return await next();
        } finally {
            Console.WriteLine($"Exited {invocation.Configuration.MethodInfo.Name}");            
        }
    }
}

Have a look at the wiki for more info.

The SolidProxy is used by the SolidRpc project to setup and configure rpc calls.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published