Bamboo.Prevalence.Implementation.PrevalentSystemProxy.IsPassThrough C# (CSharp) Method

IsPassThrough() private method

private IsPassThrough ( MethodBase method ) : bool
method System.Reflection.MethodBase
return bool
		private bool IsPassThrough(MethodBase method)
		{
			return Attribute.IsDefined(method, typeof(PassThroughAttribute)) ||
				method.DeclaringType == ObjectType;
		}