Castle.Facilities.WcfIntegration.Proxy.WcfInterceptorSelector.IsMixInTypeMethod C# (CSharp) Method

IsMixInTypeMethod() private method

private IsMixInTypeMethod ( MethodInfo method ) : bool
method System.Reflection.MethodInfo
return bool
		private bool IsMixInTypeMethod(MethodInfo method)
		{
			// TODO: Is there a better way to check this?
			return (!IsServiceMethod(method) && !IsProxiedTypeMethod(method));
		}
	}