You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -0,0 +1,127 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="AutoGeneratedFieldProperties.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.UI.WebControls {
|
||||
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using System.Reflection;
|
||||
using System.Web.Util;
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>
|
||||
/// Stores the properties for an AutoGeneratedField.
|
||||
/// </para>
|
||||
/// </devdoc>
|
||||
public sealed class AutoGeneratedFieldProperties : IStateManager {
|
||||
private bool _isTracking;
|
||||
private StateBag _statebag;
|
||||
|
||||
|
||||
public AutoGeneratedFieldProperties() {
|
||||
_statebag = new StateBag();
|
||||
}
|
||||
|
||||
|
||||
public string DataField {
|
||||
get {
|
||||
object o = ViewState["DataField"];
|
||||
if (o != null) {
|
||||
return (string)o;
|
||||
}
|
||||
return String.Empty;
|
||||
}
|
||||
set {
|
||||
ViewState["DataField"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public bool IsReadOnly {
|
||||
get {
|
||||
object o = ViewState["IsReadOnly"];
|
||||
if (o != null) {
|
||||
return (bool)o;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
set {
|
||||
ViewState["IsReadOnly"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public string Name {
|
||||
get {
|
||||
object o = ViewState["Name"];
|
||||
if (o != null) {
|
||||
return (string)o;
|
||||
}
|
||||
return String.Empty;
|
||||
}
|
||||
set {
|
||||
ViewState["Name"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public Type Type {
|
||||
get {
|
||||
object o = ViewState["Type"];
|
||||
if (o != null) {
|
||||
return (Type)o;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
set {
|
||||
ViewState["Type"] = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Gets the statebag for the AutoGeneratedFieldProperties. This property is read-only.</para>
|
||||
/// </devdoc>
|
||||
private StateBag ViewState {
|
||||
get {
|
||||
return _statebag;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#region IStateManager implementation
|
||||
|
||||
/// <internalonly/>
|
||||
bool IStateManager.IsTrackingViewState {
|
||||
get {
|
||||
return _isTracking;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <internalonly/>
|
||||
void IStateManager.LoadViewState(object state) {
|
||||
if (state != null) {
|
||||
((IStateManager)ViewState).LoadViewState(state);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <internalonly/>
|
||||
object IStateManager.SaveViewState() {
|
||||
object state = ((IStateManager)ViewState).SaveViewState();
|
||||
return state;
|
||||
}
|
||||
|
||||
|
||||
/// <internalonly/>
|
||||
void IStateManager.TrackViewState() {
|
||||
_isTracking = true;
|
||||
ViewState.TrackViewState();
|
||||
}
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user