Skip to content

Instantly share code, notes, and snippets.

@zHaytam
Created August 18, 2020 09:30
Show Gist options
  • Save zHaytam/3c658602699e84c99b5af687f56be29e to your computer and use it in GitHub Desktop.
Save zHaytam/3c658602699e84c99b5af687f56be29e to your computer and use it in GitHub Desktop.
public class LoggingInterceptor : IInterceptor
{
public void Intercept(IInvocation invocation)
{
Console.WriteLine($"Calling method {invocation.TargetType}.{invocation.Method.Name}.");
invocation.Proceed(); // continue
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment