Skip to content

Instantly share code, notes, and snippets.

@tjchaplin
Last active December 17, 2015 07:49
Show Gist options
  • Select an option

  • Save tjchaplin/5576006 to your computer and use it in GitHub Desktop.

Select an option

Save tjchaplin/5576006 to your computer and use it in GitHub Desktop.
public class SimpleInterceptor : IInterceptor
{
public void Intercept(IInvocation invocation)
{
invocation.Proceed();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment