/// <inheritdoc />
        public bool RemoveInterceptor(MethodInfo method, IInterceptor interceptor)
        {
            if (method == null)
            {
                throw new ArgumentNullException(@"method");
            }
            if (interceptor == null)
            {
                throw new ArgumentNullException(@"interceptor");
            }

            return(StaticInterceptorStub.RemoveInterceptor(method, interceptor));
        }