Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlFieldCollection.cs / 1 / DataControlFieldCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DataControlFieldCollection : StateManagedCollection { private static readonly Type[] knownTypes = new Type[] { typeof(BoundField), typeof(ButtonField), typeof(CheckBoxField), typeof(CommandField), typeof(HyperLinkField), typeof(ImageField), typeof(TemplateField) }; public event EventHandler FieldsChanged; ///Represents the collection of fields to be displayed in /// a data bound control that uses fields. ////// [ Browsable(false) ] public DataControlField this[int index] { get { return ((IList)this)[index] as DataControlField; } } ///Gets a ///at the specified index in the /// collection. /// public void Add(DataControlField field) { ((IList)this).Add(field); } ///Appends a ///to the collection. /// public DataControlFieldCollection CloneFields() { DataControlFieldCollection fields = new DataControlFieldCollection(); foreach (DataControlField field in this) { fields.Add(field.CloneField()); } return fields; } ///Provides a deep copy of the collection. Used mainly by design time dialogs to implement "cancel" rollback behavior. ////// public bool Contains(DataControlField field) { return ((IList)this).Contains(field); } ///Returns whether a DataControlField is a member of the collection. ////// public void CopyTo(DataControlField[] array, int index) { ((IList)this).CopyTo(array, index); return; } ///Copies the contents of the entire collection into an ///appending at /// the specified index of the . /// protected override object CreateKnownType(int index) { switch (index) { case 0: return new BoundField(); case 1: return new ButtonField(); case 2: return new CheckBoxField(); case 3: return new CommandField(); case 4: return new HyperLinkField(); case 5: return new ImageField(); case 6: return new TemplateField(); default: throw new ArgumentOutOfRangeException(SR.GetString(SR.DataControlFieldCollection_InvalidTypeIndex)); } } ///Creates a known type of DataControlField. ////// protected override Type[] GetKnownTypes() { return knownTypes; } ///Returns an ArrayList of known DataControlField types. ////// public int IndexOf(DataControlField field) { return ((IList)this).IndexOf(field); } ///Returns the index of the first occurrence of a value in a ///. /// public void Insert(int index, DataControlField field) { ((IList)this).Insert(index, field); } ///Inserts a ///to the collection /// at the specified index. /// Called when the Clear() method is complete. /// protected override void OnClearComplete() { OnFieldsChanged(); } ////// void OnFieldChanged(object sender, EventArgs e) { OnFieldsChanged(); } ////// void OnFieldsChanged() { if (FieldsChanged != null) { FieldsChanged(this, EventArgs.Empty); } } ////// Called when the Insert() method is complete. /// protected override void OnInsertComplete(int index, object value) { DataControlField field = value as DataControlField; if (field != null) { field.FieldChanged += new EventHandler(OnFieldChanged); } OnFieldsChanged(); } ////// Called when the Remove() method is complete. /// protected override void OnRemoveComplete(int index, object value) { DataControlField field = value as DataControlField; if (field != null) { field.FieldChanged -= new EventHandler(OnFieldChanged); } OnFieldsChanged(); } ////// protected override void OnValidate(object o) { base.OnValidate(o); if (!(o is DataControlField)) throw new ArgumentException(SR.GetString(SR.DataControlFieldCollection_InvalidType)); } ///Validates that an object is a HotSpot. ////// public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } ///Removes a ///from the collection at the specified /// index. /// public void Remove(DataControlField field) { ((IList)this).Remove(field); } ///Removes the specified ///from the collection. /// protected override void SetDirtyObject(object o) { ((DataControlField)o).SetDirty(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Marks a DataControlField as dirty so that it will record its entire state into view state. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class DataControlFieldCollection : StateManagedCollection { private static readonly Type[] knownTypes = new Type[] { typeof(BoundField), typeof(ButtonField), typeof(CheckBoxField), typeof(CommandField), typeof(HyperLinkField), typeof(ImageField), typeof(TemplateField) }; public event EventHandler FieldsChanged; ///Represents the collection of fields to be displayed in /// a data bound control that uses fields. ////// [ Browsable(false) ] public DataControlField this[int index] { get { return ((IList)this)[index] as DataControlField; } } ///Gets a ///at the specified index in the /// collection. /// public void Add(DataControlField field) { ((IList)this).Add(field); } ///Appends a ///to the collection. /// public DataControlFieldCollection CloneFields() { DataControlFieldCollection fields = new DataControlFieldCollection(); foreach (DataControlField field in this) { fields.Add(field.CloneField()); } return fields; } ///Provides a deep copy of the collection. Used mainly by design time dialogs to implement "cancel" rollback behavior. ////// public bool Contains(DataControlField field) { return ((IList)this).Contains(field); } ///Returns whether a DataControlField is a member of the collection. ////// public void CopyTo(DataControlField[] array, int index) { ((IList)this).CopyTo(array, index); return; } ///Copies the contents of the entire collection into an ///appending at /// the specified index of the . /// protected override object CreateKnownType(int index) { switch (index) { case 0: return new BoundField(); case 1: return new ButtonField(); case 2: return new CheckBoxField(); case 3: return new CommandField(); case 4: return new HyperLinkField(); case 5: return new ImageField(); case 6: return new TemplateField(); default: throw new ArgumentOutOfRangeException(SR.GetString(SR.DataControlFieldCollection_InvalidTypeIndex)); } } ///Creates a known type of DataControlField. ////// protected override Type[] GetKnownTypes() { return knownTypes; } ///Returns an ArrayList of known DataControlField types. ////// public int IndexOf(DataControlField field) { return ((IList)this).IndexOf(field); } ///Returns the index of the first occurrence of a value in a ///. /// public void Insert(int index, DataControlField field) { ((IList)this).Insert(index, field); } ///Inserts a ///to the collection /// at the specified index. /// Called when the Clear() method is complete. /// protected override void OnClearComplete() { OnFieldsChanged(); } ////// void OnFieldChanged(object sender, EventArgs e) { OnFieldsChanged(); } ////// void OnFieldsChanged() { if (FieldsChanged != null) { FieldsChanged(this, EventArgs.Empty); } } ////// Called when the Insert() method is complete. /// protected override void OnInsertComplete(int index, object value) { DataControlField field = value as DataControlField; if (field != null) { field.FieldChanged += new EventHandler(OnFieldChanged); } OnFieldsChanged(); } ////// Called when the Remove() method is complete. /// protected override void OnRemoveComplete(int index, object value) { DataControlField field = value as DataControlField; if (field != null) { field.FieldChanged -= new EventHandler(OnFieldChanged); } OnFieldsChanged(); } ////// protected override void OnValidate(object o) { base.OnValidate(o); if (!(o is DataControlField)) throw new ArgumentException(SR.GetString(SR.DataControlFieldCollection_InvalidType)); } ///Validates that an object is a HotSpot. ////// public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } ///Removes a ///from the collection at the specified /// index. /// public void Remove(DataControlField field) { ((IList)this).Remove(field); } ///Removes the specified ///from the collection. /// protected override void SetDirtyObject(object o) { ((DataControlField)o).SetDirty(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Marks a DataControlField as dirty so that it will record its entire state into view state. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- FileUtil.cs
- ProcessThreadCollection.cs
- OrCondition.cs
- XmlSchemaInferenceException.cs
- TypeDescriptionProvider.cs
- StandardCommands.cs
- X509CertificateClaimSet.cs
- SessionStateUtil.cs
- SmiMetaData.cs
- XmlSchemaNotation.cs
- DeadCharTextComposition.cs
- SamlAttribute.cs
- TransformFinalBlockRequest.cs
- WebMessageEncoderFactory.cs
- ClientProxyGenerator.cs
- HttpListenerRequest.cs
- PageTheme.cs
- GeneralTransform.cs
- DbCommandDefinition.cs
- _SecureChannel.cs
- FrugalList.cs
- Size3D.cs
- SmiConnection.cs
- IntegerValidator.cs
- DbConnectionOptions.cs
- FilterableAttribute.cs
- _SslStream.cs
- RankException.cs
- PrimitiveCodeDomSerializer.cs
- _RequestCacheProtocol.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- EnumType.cs
- ExpressionEditorAttribute.cs
- NavigatorInput.cs
- RenamedEventArgs.cs
- WpfXamlMember.cs
- ArgumentNullException.cs
- CommandPlan.cs
- AppDomainShutdownMonitor.cs
- SafeRightsManagementQueryHandle.cs
- CTreeGenerator.cs
- ControlValuePropertyAttribute.cs
- precedingquery.cs
- DataGridViewCell.cs
- Page.cs
- followingsibling.cs
- NativeMethods.cs
- GraphicsContainer.cs
- UnconditionalPolicy.cs
- MobileControlBuilder.cs
- DataGridViewRowCollection.cs
- ImageFormatConverter.cs
- RowToFieldTransformer.cs
- SpeakInfo.cs
- TypeSystemProvider.cs
- AvTrace.cs
- CultureTableRecord.cs
- Polygon.cs
- ExceptionHandler.cs
- FormatterServices.cs
- NetworkInterface.cs
- InertiaExpansionBehavior.cs
- ProxyAttribute.cs
- CalendarModeChangedEventArgs.cs
- SQLDoubleStorage.cs
- SparseMemoryStream.cs
- ResolveCompletedEventArgs.cs
- QueryStack.cs
- OleDbDataAdapter.cs
- GraphicsContext.cs
- WindowsClientCredential.cs
- CheckBoxList.cs
- Error.cs
- SetterBaseCollection.cs
- ProjectedWrapper.cs
- TextSearch.cs
- ToolConsole.cs
- ToolStripDropDownMenu.cs
- SqlDataAdapter.cs
- PointAnimationUsingPath.cs
- IBuiltInEvidence.cs
- PersonalizationProvider.cs
- UidManager.cs
- Configuration.cs
- HierarchicalDataSourceControl.cs
- DrawingContextWalker.cs
- DiscoveryClientReferences.cs
- RouteUrlExpressionBuilder.cs
- FontWeightConverter.cs
- FormCollection.cs
- BufferedWebEventProvider.cs
- UnicodeEncoding.cs
- ObjectPersistData.cs
- Membership.cs
- DragSelectionMessageFilter.cs
- CmsInterop.cs
- ClientProxyGenerator.cs
- FontFamily.cs
- DataGridViewCellPaintingEventArgs.cs
- NotifyIcon.cs