Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / SelectedDatesCollection.cs / 1 / SelectedDatesCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SelectedDatesCollection : ICollection { private ArrayList dateList; ///Encapsulates the collection of ///within a control. /// public SelectedDatesCollection(ArrayList dateList) { this.dateList = dateList; } ///Initializes a new instance of the ///class /// with the specified date list. /// public int Count { get { return dateList.Count; } } ///Gets the item count of the collection. ////// public DateTime this[int index] { get { return(DateTime) dateList[index]; } } ///Gets a ///referenced by the specified ordinal index value in the collection. /// public void Add(DateTime date) { int index; if (!FindIndex(date.Date, out index)) { dateList.Insert(index, date.Date); } } ///Adds the specified ///to the end of the collection. /// public void Clear() { dateList.Clear(); } ///Removes all ///controls from the collection. /// public bool Contains(DateTime date) { int index; return FindIndex(date.Date, out index); } ///Returns a value indicating whether the collection contains the specified /// date. ////// private bool FindIndex(DateTime date, out int index) { int n = Count; int Min = 0; int Max = n; while (Min < Max) { index = (Min + Max ) / 2; if (date == this[index]) { return true; } if (date < this[index]) { Max = index; } else { Min = index + 1; } } index = Min; return false; } ////// public IEnumerator GetEnumerator() { return dateList.GetEnumerator(); } ///Returns an enumerator of all ///controls within the collection. /// public void CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ///Copies contents from the collection to a specified ///with a /// specified starting index. /// public Object SyncRoot { get { return this;} } ///Gets the object that can be used to synchronize access to the collection. In /// this case, it is the collection itself. ////// public bool IsReadOnly { get { return false;} } ///Gets a value indicating whether the collection is read-only. ////// public bool IsSynchronized { get { return false;} } ///Gets a value indicating whether access to the collection is synchronized /// (thread-safe). ////// public void Remove(DateTime date) { int index; if (FindIndex(date.Date, out index)) { dateList.RemoveAt(index); } } ///Removes the specified date from the collection. ////// public void SelectRange(DateTime fromDate, DateTime toDate) { dateList.Clear(); if (fromDate <= toDate) { // The while loop below is safe that it is not attempting to add // day beyond the last supported date because toDate can happen // to be the last supported date. dateList.Add(fromDate); DateTime date = fromDate; while (date < toDate) { date = date.AddDays(1); dateList.Add(date); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Sets the contents of the ///to span /// across the specified date range. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SelectedDatesCollection : ICollection { private ArrayList dateList; ///Encapsulates the collection of ///within a control. /// public SelectedDatesCollection(ArrayList dateList) { this.dateList = dateList; } ///Initializes a new instance of the ///class /// with the specified date list. /// public int Count { get { return dateList.Count; } } ///Gets the item count of the collection. ////// public DateTime this[int index] { get { return(DateTime) dateList[index]; } } ///Gets a ///referenced by the specified ordinal index value in the collection. /// public void Add(DateTime date) { int index; if (!FindIndex(date.Date, out index)) { dateList.Insert(index, date.Date); } } ///Adds the specified ///to the end of the collection. /// public void Clear() { dateList.Clear(); } ///Removes all ///controls from the collection. /// public bool Contains(DateTime date) { int index; return FindIndex(date.Date, out index); } ///Returns a value indicating whether the collection contains the specified /// date. ////// private bool FindIndex(DateTime date, out int index) { int n = Count; int Min = 0; int Max = n; while (Min < Max) { index = (Min + Max ) / 2; if (date == this[index]) { return true; } if (date < this[index]) { Max = index; } else { Min = index + 1; } } index = Min; return false; } ////// public IEnumerator GetEnumerator() { return dateList.GetEnumerator(); } ///Returns an enumerator of all ///controls within the collection. /// public void CopyTo(Array array, int index) { for (IEnumerator e = this.GetEnumerator(); e.MoveNext();) array.SetValue(e.Current, index++); } ///Copies contents from the collection to a specified ///with a /// specified starting index. /// public Object SyncRoot { get { return this;} } ///Gets the object that can be used to synchronize access to the collection. In /// this case, it is the collection itself. ////// public bool IsReadOnly { get { return false;} } ///Gets a value indicating whether the collection is read-only. ////// public bool IsSynchronized { get { return false;} } ///Gets a value indicating whether access to the collection is synchronized /// (thread-safe). ////// public void Remove(DateTime date) { int index; if (FindIndex(date.Date, out index)) { dateList.RemoveAt(index); } } ///Removes the specified date from the collection. ////// public void SelectRange(DateTime fromDate, DateTime toDate) { dateList.Clear(); if (fromDate <= toDate) { // The while loop below is safe that it is not attempting to add // day beyond the last supported date because toDate can happen // to be the last supported date. dateList.Add(fromDate); DateTime date = fromDate; while (date < toDate) { date = date.AddDays(1); dateList.Add(date); } } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Sets the contents of the ///to span /// across the specified date range.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BaseDataList.cs
- ConstraintConverter.cs
- ConnectionsZoneDesigner.cs
- ParallelRangeManager.cs
- Geometry3D.cs
- DoubleConverter.cs
- RealizationDrawingContextWalker.cs
- SkewTransform.cs
- IDispatchConstantAttribute.cs
- MapPathBasedVirtualPathProvider.cs
- FormConverter.cs
- MexHttpBindingElement.cs
- HttpApplication.cs
- ContextMenuAutomationPeer.cs
- DictionaryBase.cs
- NamedPipeHostedTransportConfiguration.cs
- Filter.cs
- ContentFilePart.cs
- ParallelTimeline.cs
- ReachDocumentReferenceCollectionSerializer.cs
- ConfigurationStrings.cs
- ScrollChrome.cs
- JsonWriter.cs
- OpenTypeLayout.cs
- VisualTreeUtils.cs
- ByteAnimation.cs
- Compiler.cs
- ProtocolsInstallComponent.cs
- AuthorizationRule.cs
- WebProxyScriptElement.cs
- CaseCqlBlock.cs
- RepeatBehaviorConverter.cs
- OdbcFactory.cs
- ELinqQueryState.cs
- PropertyToken.cs
- CheckoutException.cs
- NavigatorOutput.cs
- DataSourceHelper.cs
- ActivityXRefPropertyEditor.cs
- FileIOPermission.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- NetworkInterface.cs
- CodeArrayIndexerExpression.cs
- EntitySetBaseCollection.cs
- cookiecontainer.cs
- CircleEase.cs
- RuntimeVariablesExpression.cs
- GetPageNumberCompletedEventArgs.cs
- DrawingVisual.cs
- AbstractSvcMapFileLoader.cs
- ValidatingReaderNodeData.cs
- CodeAccessSecurityEngine.cs
- VisualStyleRenderer.cs
- TypeBuilderInstantiation.cs
- Crc32.cs
- ExpressionBuilderCollection.cs
- SystemTcpStatistics.cs
- ThreadStateException.cs
- LineServicesCallbacks.cs
- UpdateManifestForBrowserApplication.cs
- ParamArrayAttribute.cs
- EntityConnection.cs
- SaveWorkflowAsyncResult.cs
- DbConnectionFactory.cs
- ReadOnlyActivityGlyph.cs
- HebrewCalendar.cs
- ArgumentException.cs
- DataListItemCollection.cs
- XhtmlBasicPhoneCallAdapter.cs
- SafeHandles.cs
- SaveFileDialog.cs
- WorkflowCompensationBehavior.cs
- Font.cs
- TreeChangeInfo.cs
- ToolboxBitmapAttribute.cs
- WsatAdminException.cs
- TileModeValidation.cs
- LogArchiveSnapshot.cs
- HttpConfigurationSystem.cs
- WindowAutomationPeer.cs
- DetailsViewPagerRow.cs
- DurableInstance.cs
- StringFunctions.cs
- BigInt.cs
- PathFigure.cs
- DesignerDataSourceView.cs
- DesignerOptionService.cs
- Module.cs
- ShapeTypeface.cs
- SafeCryptContextHandle.cs
- ModifierKeysConverter.cs
- DataObject.cs
- HMACSHA1.cs
- BinaryCommonClasses.cs
- Canonicalizers.cs
- ContentElement.cs
- itemelement.cs
- FileDialogCustomPlacesCollection.cs
- HostedTransportConfigurationBase.cs
- Completion.cs