4 instantiations of EventValidationStore
System.Web (4)
UI\ClientScriptManager.cs (2)
1274_outboundEvents = new EventValidationStore(); 1280_outboundEvents = new EventValidationStore();
UI\EventValidationStore.cs (2)
40EventValidationStore newStore = new EventValidationStore(); 80EventValidationStore store = new EventValidationStore();
12 references to EventValidationStore
System.Web (12)
UI\ClientScriptManager.cs (5)
1246private EventValidationStore _inboundEvents; // events which are valid for the current postback 1247private EventValidationStore _outboundEvents; // events which will be valid on the next postback 1289EventValidationStore validatedIncomingEvents = eventValidationField as EventValidationStore; 1305EventValidationStore clonedEventValidationStore = validatedIncomingEvents.Clone();
UI\EventValidationStore.cs (4)
39public EventValidationStore Clone() { 40EventValidationStore newStore = new EventValidationStore(); 70public static EventValidationStore DeserializeFrom(Stream inputStream) { 80EventValidationStore store = new EventValidationStore();
UI\ObjectStateFormatter.cs (3)
614return EventValidationStore.DeserializeFrom(reader.BaseStream); 1029if (value is EventValidationStore) { 1031((EventValidationStore)value).SerializeTo(writer.BaseStream);