2 instantiations of SyncEventMethodInfo
System.Web (2)
UI\TemplateControl.cs (2)
564dictionary[methodName] = new SyncEventMethodInfo(parameterfulMethod, isArgless: false); 571dictionary[methodName] = new SyncEventMethodInfo(parameterlessMethod, isArgless: true);
6 references to SyncEventMethodInfo
System.Web (6)
UI\TemplateControl.cs (6)
433IDictionary<string, SyncEventMethodInfo> syncEvents = eventList.SyncEvents; 438SyncEventMethodInfo info = entry.Value; 503IDictionary<string, SyncEventMethodInfo> syncEventDictionary = eventList.SyncEvents; 560private bool GetDelegateInformationFromSyncMethod(string methodName, IDictionary<string, SyncEventMethodInfo> dictionary) { 950internal readonly IDictionary<string, SyncEventMethodInfo> SyncEvents = new Dictionary<string, SyncEventMethodInfo>(StringComparer.Ordinal);