Beispiel #1
0
        /// <summary>
        /// Gets all methods marked with an attribute.  This only maps an attribute to methods.
        /// <remarks>This is method should not be used when an attribute contains values.</remarks>
        /// </summary>
        /// <param name="attributeTypes"></param>
        /// <returns></returns>
        public static AttributeToMethodList GetMethodsWithAttribute(params Type[] attributeTypes)
        {
            var results = new AttributeToMethodList();

            var assemblies = AppDomain.CurrentDomain.GetAssemblies().ToArray();

            foreach (var assembly in assemblies)
            {
                try
                {
                    foreach (var method in from type in assembly.GetTypes()
                             from method in type.GetMethods()
                             select method)
                    {
                        foreach (var attributeType in attributeTypes)
                        {
                            if (Attribute.IsDefined(method, attributeType))
                            {
                                var attrInstance = method.GetCustomAttribute(attributeType, false);
                                results.Add(attrInstance, method);
                            }
                        }
                    }
                }
                catch (Exception)
                {
                }
            }

            return(results);
        }
Beispiel #2
0
        public static void Start()
        {
            var sw = new Stopwatch();

            sw.Start();

            var umbracoEventsProvider = new UmbracoEventAttributeProvider();

            Type[] eventAttributes = umbracoEventsProvider.Get();

            //bind attributes that require no values
            AttributeToMethodList methodAttrMapping = ReflectionHelper.GetMethodsWithAttribute(eventAttributes);

            foreach (var attrMapping in methodAttrMapping)
            {
                var binder = (IBindToEvent)attrMapping.Key;
                binder.Bind(attrMapping.Value);
            }

            sw.Stop();
            Debug.WriteLine(sw.Elapsed);
        }