AspNetEdit.Editor.ComponentModel.EventBindingService.GetCompatibleMethods C# (CSharp) Method

GetCompatibleMethods() public method

public GetCompatibleMethods ( System e ) : System.Collections.ICollection
e System
return System.Collections.ICollection
        public System.Collections.ICollection GetCompatibleMethods(System.ComponentModel.EventDescriptor e)
        {
            ParameterInfo[] pi = GetEventParameters (e);

            ArrayList arr = new ArrayList ();

            foreach (DictionaryEntry de in eventHandlers)
                if ( (ParameterInfo[]) de.Value == pi)
                    arr.Add (de.Key);

            return arr.ToArray (typeof(string));
        }