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