Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / TreeNodeBindingCollection.cs / 1 / TreeNodeBindingCollection.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; using System.Web; ////// Provides a collection of TreeNodeBinding objects /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class TreeNodeBindingCollection : StateManagedCollection { private static readonly Type[] knownTypes = new Type[] { typeof(TreeNodeBinding) }; private TreeNodeBinding _defaultBinding; internal TreeNodeBindingCollection() { } ////// Gets the TreeNodeBinding at the specified index /// public TreeNodeBinding this[int i] { get { return (TreeNodeBinding)((IList)this)[i]; } set { ((IList)this)[i] = value; } } ////// Adds a TreeNodeBinding to the collection /// public int Add(TreeNodeBinding binding) { return ((IList)this).Add(binding); } public bool Contains(TreeNodeBinding binding) { return ((IList)this).Contains(binding); } public void CopyTo(TreeNodeBinding[] bindingArray, int index) { base.CopyTo(bindingArray, index); } protected override object CreateKnownType(int index) { return new TreeNodeBinding(); } private void FindDefaultBinding() { _defaultBinding = null; // Look for another binding that would be a good default foreach (TreeNodeBinding binding in this) { if (binding.Depth == -1 && binding.DataMember.Length == 0) { _defaultBinding = binding; break; } } } ////// Gets a TreeNodeBinding data binding definition for the specified depth or datamember /// internal TreeNodeBinding GetBinding(string dataMember, int depth) { TreeNodeBinding bestMatch = null; int match = 0; if ((dataMember != null) && (dataMember.Length == 0)) { dataMember = null; } foreach (TreeNodeBinding binding in this) { if ((binding.Depth == depth)) { if (String.Equals(binding.DataMember, dataMember, StringComparison.CurrentCultureIgnoreCase)) { return binding; } else if ((match < 1) && (binding.DataMember.Length == 0)) { bestMatch = binding; match = 1; } } else if (String.Equals(binding.DataMember, dataMember, StringComparison.CurrentCultureIgnoreCase) && (match < 2) && (binding.Depth == -1)) { bestMatch = binding; match = 2; } } if (bestMatch == null) { // Check that the default binding is still suitable (VSWhidbey 358817) if (_defaultBinding != null) { if (_defaultBinding.Depth != -1 || _defaultBinding.DataMember.Length != 0) { // Look for another binding that would be a good default FindDefaultBinding(); } bestMatch = _defaultBinding; } } return bestMatch; } protected override Type[] GetKnownTypes() { return knownTypes; } public int IndexOf(TreeNodeBinding binding) { return ((IList)this).IndexOf(binding); } public void Insert(int index, TreeNodeBinding binding) { ((IList)this).Insert(index, binding); } protected override void OnClear() { base.OnClear(); _defaultBinding = null; } protected override void OnRemoveComplete(int index, object value) { if (value == _defaultBinding) { FindDefaultBinding(); } } protected override void OnValidate(object value) { base.OnValidate(value); TreeNodeBinding binding = value as TreeNodeBinding; if ((binding != null) && (binding.DataMember.Length == 0) && (binding.Depth == -1)) { _defaultBinding = binding; } } ////// Removes a TreeNodeBinding from the collection. /// public void Remove(TreeNodeBinding binding) { ((IList)this).Remove(binding); } ////// Removes a TreeNodeBinding from the collection at a given index. /// public void RemoveAt(int index) { ((IList)this).RemoveAt(index); } protected override void SetDirtyObject(object o) { if (o is TreeNodeBinding) { ((TreeNodeBinding)o).SetDirty(); } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartCloseVerb.cs
- OutOfProcStateClientManager.cs
- MailMessage.cs
- PolicyException.cs
- SplitterEvent.cs
- ListenerTraceUtility.cs
- XmlReader.cs
- XmlBinaryReader.cs
- HtmlAnchor.cs
- LocalBuilder.cs
- TextRangeEdit.cs
- EventHandlingScope.cs
- FrameAutomationPeer.cs
- DbParameterCollectionHelper.cs
- CacheEntry.cs
- StorageBasedPackageProperties.cs
- InternalConfigEventArgs.cs
- PatternMatcher.cs
- EventLogPermissionEntryCollection.cs
- SchemaImporter.cs
- SystemUdpStatistics.cs
- PasswordBox.cs
- PropertyPathConverter.cs
- View.cs
- SoapTypeAttribute.cs
- XMLDiffLoader.cs
- UserControl.cs
- MLangCodePageEncoding.cs
- TTSEngineTypes.cs
- ZipIOExtraFieldZip64Element.cs
- webproxy.cs
- EntityContainerEntitySet.cs
- CodeMemberMethod.cs
- ClientEventManager.cs
- ModelTreeEnumerator.cs
- SystemKeyConverter.cs
- SelectionListDesigner.cs
- ObjectStateManager.cs
- WebBrowserContainer.cs
- BaseProcessProtocolHandler.cs
- HitTestParameters.cs
- ExtentCqlBlock.cs
- SelectionHighlightInfo.cs
- PackageRelationshipCollection.cs
- SocketInformation.cs
- TextBoxAutomationPeer.cs
- odbcmetadatacolumnnames.cs
- SelectionListComponentEditor.cs
- WinFormsSpinner.cs
- TextTrailingWordEllipsis.cs
- SqlTypesSchemaImporter.cs
- DecimalStorage.cs
- TagMapCollection.cs
- ContainerControl.cs
- DataGridLinkButton.cs
- MgmtConfigurationRecord.cs
- PublisherIdentityPermission.cs
- X509Certificate2Collection.cs
- Int32Storage.cs
- DragDropHelper.cs
- XamlSerializer.cs
- TcpChannelHelper.cs
- ScrollBarRenderer.cs
- StylusPointPropertyInfo.cs
- TextTreeNode.cs
- XmlNamespaceMapping.cs
- BrowserDefinitionCollection.cs
- UnsafeNativeMethods.cs
- WebProxyScriptElement.cs
- NotFiniteNumberException.cs
- LineSegment.cs
- SoapSchemaImporter.cs
- WebPartMinimizeVerb.cs
- DataGridHeaderBorder.cs
- ParallelTimeline.cs
- FlowDocumentPaginator.cs
- SHA1CryptoServiceProvider.cs
- ModelUtilities.cs
- SchemaTypeEmitter.cs
- NoneExcludedImageIndexConverter.cs
- PcmConverter.cs
- StatusStrip.cs
- XmlSchemaCompilationSettings.cs
- URIFormatException.cs
- PowerModeChangedEventArgs.cs
- OracleCommand.cs
- DataGridViewRowPrePaintEventArgs.cs
- ValidatingReaderNodeData.cs
- MouseBinding.cs
- BypassElement.cs
- SessionStateModule.cs
- SecurityResources.cs
- MessageEncodingBindingElement.cs
- HttpContextWrapper.cs
- EventLogger.cs
- InvokeSchedule.cs
- TimelineCollection.cs
- CodeActivityMetadata.cs
- Rect3D.cs
- LogReserveAndAppendState.cs