2 instantiations of AsyncEventMethodInfo
System.Web (2)
UI\TemplateControl.cs (2)
546dictionary[methodName] = new AsyncEventMethodInfo(parameterfulMethod, requiresCancellationToken: true); 553dictionary[methodName] = new AsyncEventMethodInfo(parameterlessMethod, requiresCancellationToken: false);
6 references to AsyncEventMethodInfo
System.Web (6)
UI\TemplateControl.cs (6)
467IDictionary<string, AsyncEventMethodInfo> asyncEvents = eventList.AsyncEvents; 469AsyncEventMethodInfo preRenderCompleteAsyncEvent; 504IDictionary<string, AsyncEventMethodInfo> asyncEventDictionary = eventList.AsyncEvents; 542private bool GetDelegateInformationFromAsyncMethod(string methodName, IDictionary<string, AsyncEventMethodInfo> dictionary) { 949internal readonly IDictionary<string, AsyncEventMethodInfo> AsyncEvents = new Dictionary<string, AsyncEventMethodInfo>(StringComparer.Ordinal);