1 implementation of IStateFormatter2
System.Web (1)
UI\ObjectStateFormatter.cs (1)
45public sealed class ObjectStateFormatter : IStateFormatter, IStateFormatter2, IFormatter {
17 references to IStateFormatter2
System.Web (17)
UI\ClientScriptManager.cs (2)
123IStateFormatter2 formatter = _owner.CreateStateFormatter(); 202IStateFormatter2 formatter = _owner.CreateStateFormatter();
UI\ObjectStateFormatter.cs (2)
1255object IStateFormatter2.Deserialize(string serializedState, Purpose purpose) { 1259string IStateFormatter2.Serialize(object state, Purpose purpose) {
UI\Page.cs (1)
2184internal IStateFormatter2 CreateStateFormatter() {
UI\PageStatePersister.cs (2)
15private IStateFormatter2 _stateFormatter; 41internal IStateFormatter2 StateFormatter2 {
UI\Util.cs (2)
51internal static string SerializeWithAssert(IStateFormatter2 formatter, object stateGraph, Purpose purpose) { 57internal static object DeserializeWithAssert(IStateFormatter2 formatter, string serializedState, Purpose purpose) {
UI\WebControls\DetailsView.cs (2)
2254IStateFormatter2 formatter = Page.CreateStateFormatter(); 2876IStateFormatter2 formatter = Page.CreateStateFormatter();
UI\WebControls\GridView.cs (6)
124IStateFormatter2 _stateFormatter; 134internal GridView(IStateFormatter2 stateFormatter) { 1525private IStateFormatter2 StateFormatter { 2775IStateFormatter2 formatter = StateFormatter; 3733IStateFormatter2 formatter = StateFormatter; 4127IStateFormatter2 formatter = StateFormatter;