12 writes to Second
System.Web (8)
UI\Page.cs (1)
5526
statePair.
Second
= allSavedViewState;
UI\Pair.cs (1)
25
Second
= y;
UI\WebControls\DataBoundControl.cs (1)
504
myState.
Second
= ((IStateManager)ModelDataSource).SaveViewState();
UI\WebControls\ObjectDataSource.cs (1)
1005
myState.
Second
= ((IStateManager)_view).SaveViewState();
UI\WebControls\ObjectDataSourceView.cs (1)
1990
myState.
Second
= (_filterParameters != null) ? ((IStateManager)_filterParameters).SaveViewState() : null;
UI\WebControls\Repeater.cs (1)
1013
myState.
Second
= ((IStateManager)ModelDataSource).SaveViewState();
UI\WebControls\SqlDataSource.cs (1)
1101
myState.
Second
= ((IStateManager)_view).SaveViewState();
UI\WebControls\SqlDataSourceView.cs (1)
1460
myState.
Second
= (_filterParameters != null) ? ((IStateManager)_filterParameters).SaveViewState() : null;
System.Web.DynamicData (1)
DynamicData\ControlFilterExpression.cs (1)
91
p.
Second
= ((IStateManager)Expression.Parameters).SaveViewState();
System.Web.Extensions (3)
UI\WebControls\Expressions\ParameterDataSourceExpression.cs (1)
49
p.
Second
= DataSourceHelper.SaveViewState(_parameters);
UI\WebControls\QueryableDataSource.cs (1)
110
myState.
Second
= ((IStateManager)_view).SaveViewState();
UI\WebControls\QueryExtender.cs (1)
111
p.
Second
= _query != null ? ((IStateManager)_query.Expressions).SaveViewState() : null;
81 references to Second
System.Web (61)
Compilation\ConnectionStringsExpressionBuilder.cs (2)
55
bool connectionString = (bool)p.
Second
;
70
bool connectionString = (bool)p.
Second
;
Configuration\HttpCapabilitiesSectionHandler.cs (2)
307
XmlNode srcAttribute = (XmlNode)pair0.
Second
;
346
e, (XmlNode)pair.
Second
);
Handlers\AssemblyResourceLoader.cs (2)
419
long assemblyDate = (long)assemblyInfo.
Second
;
643
cachePolicy.SetLastModified(new DateTime((long)assemblyInfo.
Second
));
UI\Control.cs (3)
1966
if (AdapterInternal == null || savedState.
Second
== null) {
1969
AdapterInternal.LoadAdapterControlState(savedState.
Second
);
2021
childState = (ArrayList)allSavedState.
Second
;
UI\ControlBuilder.cs (1)
2944
column = (int)attributeValuePositions[name].
Second
;
UI\HiddenFieldPageStatePersister.cs (1)
34
ControlState = combinedState.
Second
;
UI\ObjectStateFormatter.cs (1)
928
objectStack.Push(p.
Second
);
UI\OrderedDictionaryStateHelper.cs (1)
26
dictionary.Add(pairEntry.First, pairEntry.
Second
);
UI\Page.cs (7)
2036
allSavedViewState = statePair.
Second
as Pair;
2071
LoadViewStateRecursive(allSavedViewState.
Second
);
5517
if (allSavedViewState.
Second
is Pair) {
5518
viewStateSize = EstimateStateSize(((Pair)allSavedViewState.
Second
).First);
5519
} else if (allSavedViewState.
Second
is Triplet) {
5520
viewStateSize = EstimateStateSize(((Triplet)allSavedViewState.
Second
).First);
5548
persister.ViewState = pair.
Second
;
UI\SessionPageStatePersister.cs (4)
53
persistedStateID = (string)combinedState.
Second
;
58
Pair pair = (Pair)combinedState.
Second
;
60
ControlState = pair.
Second
;
70
ControlState = combinedState.
Second
;
UI\StateManagedCollection.cs (5)
159
if (p1.
Second
is Pair) {
160
Pair p2 = (Pair)p1.
Second
;
165
ArrayList typedObjectTypeNames = (ArrayList)p2.
Second
;
203
int[] typeIndices = (int[])p1.
Second
;
239
ArrayList typedObjectTypeNames = (ArrayList)p.
Second
;
UI\UserControl.cs (2)
310
if (myState.
Second
!= null) {
315
attributeStorage.LoadViewState(myState.
Second
);
UI\WebControls\Adapters\MenuAdapter.cs (1)
36
_path = (string)pairState.
Second
;
UI\WebControls\DataBoundControl.cs (3)
479
if (myState.
Second
!= null) {
480
((IStateManager)ModelDataSource).LoadViewState(myState.
Second
);
507
(myState.
Second
== null)) {
UI\WebControls\listitem.cs (1)
287
Value = (string) p.
Second
;
UI\WebControls\ListItemCollection.cs (1)
341
ArrayList items = (ArrayList) p.
Second
;
UI\WebControls\LoginView.cs (2)
267
if (state.
Second
!= null) {
268
_templateIndex = (int)state.
Second
;
UI\WebControls\Menu.cs (2)
2093
if (state.
Second
!= null) {
2094
string path = state.
Second
as string;
UI\WebControls\MethodParametersDictionary.cs (1)
54
object[] states = (object[])pair.
Second
;
UI\WebControls\MultiView.cs (1)
234
ActiveViewIndex = (int) p.
Second
;
UI\WebControls\ObjectDataSource.cs (3)
956
if (myState.
Second
!= null) {
957
((IStateManager)GetView()).LoadViewState(myState.
Second
);
1009
(myState.
Second
== null)) {
UI\WebControls\ObjectDataSourceView.cs (3)
1752
if (myState.
Second
!= null)
1753
((IStateManager)FilterParameters).LoadViewState(myState.
Second
);
1993
(myState.
Second
== null)) {
UI\WebControls\Repeater.cs (3)
988
if (myState.
Second
!= null) {
989
((IStateManager)ModelDataSource).LoadViewState(myState.
Second
);
1016
(myState.
Second
== null)) {
UI\WebControls\SqlDataSource.cs (3)
1054
if (myState.
Second
!= null) {
1055
((IStateManager)GetView()).LoadViewState(myState.
Second
);
1105
(myState.
Second
== null)) {
UI\WebControls\SqlDataSourceView.cs (3)
1259
if (myState.
Second
!= null)
1260
((IStateManager)FilterParameters).LoadViewState(myState.
Second
);
1463
(myState.
Second
== null)) {
UI\WebControls\WebControl.cs (2)
727
if (myState.
Second
!= null) {
732
attrState.LoadViewState(myState.
Second
);
UI\WebParts\WebPartManager.cs (1)
2249
val = data.
Second
;
System.Web.DynamicData (2)
DynamicData\ControlFilterExpression.cs (2)
98
if (p.
Second
!= null) {
99
((IStateManager)Expression.Parameters).LoadViewState(p.
Second
);
System.Web.Entity (1)
System\Data\WebControls\EntityDataSourceView.cs (1)
1609
_originalProperties = (Dictionary<string, ArrayList>)state.
Second
;
System.Web.Entity.Design (1)
System\Data\WebControls\Design\EntityDataSourceStatementEditor.cs (1)
29
string value = (string)((Pair)pair).
Second
;
System.Web.Extensions (7)
UI\WebControls\Expressions\ParameterDataSourceExpression.cs (2)
56
if (p.
Second
!= null) {
57
((IStateManager)Parameters).LoadViewState(p.
Second
);
UI\WebControls\QueryableDataSource.cs (3)
113
(myState.
Second
== null)) {
133
if (myState.
Second
!= null) {
134
((IStateManager)View).LoadViewState(myState.
Second
);
UI\WebControls\QueryExtender.cs (2)
118
if (p.
Second
!= null) {
119
((IStateManager)Query.Expressions).LoadViewState(p.
Second
);
System.Web.Mobile (9)
UI\MobileControls\Adapters\ChtmlCalendarAdapter.cs (1)
203
_chooseOption = (int)pair.
Second
;
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (1)
185
_chooseOption = (int)pair.
Second
;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (1)
175
_chooseOption = (int)pair.
Second
;
UI\MobileControls\MobilePage.cs (3)
1154
Pair id = (Pair) pair.
Second
;
1302
Pair allViewState = pair.
Second
as Pair;
1303
if (allViewState == null || allViewState.
Second
!= null)
UI\MobileControls\PagedControl.cs (2)
328
_stateLoadItemsArgs = statePair.
Second
as Pair;
341
new LoadItemsEventArgs((int) _stateLoadItemsArgs.First, (int) _stateLoadItemsArgs.
Second
));
UI\MobileControls\SessionViewState.cs (1)
231
int historyID = (int) id.
Second
;