Cuke4Nuke.Core.AfterHook.GetHookAttributes C# (CSharp) Method

GetHookAttributes() private static method

private static GetHookAttributes ( MethodInfo method ) : HookAttribute[]
method System.Reflection.MethodInfo
return HookAttribute[]
        private static HookAttribute[] GetHookAttributes(MethodInfo method)
        {
            return (HookAttribute[])method.GetCustomAttributes(typeof(AfterAttribute), true);
        }