DependencyInjector.HasInjectAttribute C# (CSharp) Method

HasInjectAttribute() static private method

static private HasInjectAttribute ( MemberInfo, member ) : bool
member MemberInfo,
return bool
    static bool HasInjectAttribute(MemberInfo member)
    {
		return member.GetCustomAttributes(typeof(InjectAttribute), true).Any();
    }