Skip to content

Instantly share code, notes, and snippets.

@robertgreiner
Created April 17, 2012 21:43
Show Gist options
  • Save robertgreiner/2409268 to your computer and use it in GitHub Desktop.
Save robertgreiner/2409268 to your computer and use it in GitHub Desktop.
public class LoggingInterceptor : IInterceptor
{
public void Intercept(IInvocation invocation)
{
try
{
Console.WriteLine("Start");
invocation.Proceed();
Console.WriteLine("Success!");
}
catch
{
Console.WriteLine("Error!");
throw;
}
finally
{
Console.WriteLine("Exit");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment