1 implementation of Serialize
System.Web (1)
UI\ObjectStateFormatter.cs (1)
1259
string IStateFormatter2.
Serialize
(object state, Purpose purpose) {
8 references to Serialize
System.Web (8)
UI\ClientScriptManager.cs (1)
124
return formatter.
Serialize
(eventValidationStoreObject, Purpose.WebForms_ClientScriptManager_EventValidation);
UI\Util.cs (1)
52
return formatter.
Serialize
(stateGraph, purpose);
UI\WebControls\DetailsView.cs (1)
2262
string dataKeyString = formatter.
Serialize
(dataKeyState, Purpose.WebForms_DetailsView_KeyTable);
UI\WebControls\GridView.cs (5)
1884
return "\"" + PageIndex + "|" + (int)sortDirection + "|" + StateFormatter.
Serialize
(sortExpression, Purpose.WebForms_GridView_SortExpression) + "|\"";
1892
_sortExpressionSerialized = StateFormatter.
Serialize
(SortExpression, Purpose.WebForms_GridView_SortExpression);
2782
string dataKeysString = formatter.
Serialize
(SaveDataKeysState(), Purpose.WebForms_GridView_DataKeys);
2783
string sortExpressionString = formatter.
Serialize
(SortExpression, Purpose.WebForms_GridView_SortExpression);
3734
string sortExpressionSerialized = formatter.
Serialize
(SortExpression, Purpose.WebForms_GridView_SortExpression);