public bool isMethodInputHandlerOrFeedbackOverride(IMethodDefinition method)
        {
            // FEEDBACK TODO: This is extremely coarse. There must be quite a few non-UI routed/non-routed events
            Microsoft.Cci.Immutable.PlatformType platform = host.PlatformType as Microsoft.Cci.Immutable.PlatformType;;
            IAssemblyReference coreAssembly  = PhoneTypeHelper.getCoreAssemblyReference(host);
            ITypeReference     eventArgsType = platform.CreateReference(coreAssembly, "System", "EventArgs");

            foreach (IParameterDefinition paramDef in method.Parameters)
            {
                if (paramDef.Type.isClass(eventArgsType))
                {
                    return(true);
                }
            }

            return(false);
        }