Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / ComponentModel / ListSortDescriptionCollection.cs / 1 / ListSortDescriptionCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.Collections; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class ListSortDescriptionCollection : IList { ArrayList sorts = new ArrayList(); ///[To be supplied.] ////// public ListSortDescriptionCollection() { } ///[To be supplied.] ////// public ListSortDescriptionCollection(ListSortDescription[] sorts) { if (sorts != null) { for (int i = 0; i < sorts.Length; i ++) { this.sorts.Add(sorts[i]); } } } ///[To be supplied.] ////// public ListSortDescription this[int index] { get { return (ListSortDescription) sorts[index]; } set { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } } // IList implementation // ///[To be supplied.] ////// bool IList.IsFixedSize { get { return true; } } ///[To be supplied.] ////// bool IList.IsReadOnly { get { return true; } } ///[To be supplied.] ////// object IList.this[int index] { get { return this[index]; } set { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } } ///[To be supplied.] ////// int IList.Add(object value) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// void IList.Clear() { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// public bool Contains(object value) { return ((IList)this.sorts).Contains(value); } ///[To be supplied.] ////// public int IndexOf(object value) { return ((IList)this.sorts).IndexOf(value); } ///[To be supplied.] ////// void IList.Insert(int index, object value) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// void IList.Remove(object value) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// void IList.RemoveAt(int index) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } // ICollection // ///[To be supplied.] ////// public int Count { get { return this.sorts.Count; } } ///[To be supplied.] ////// bool ICollection.IsSynchronized { get { // true because after the constructor finished running the ListSortDescriptionCollection is Read Only return true; } } ///[To be supplied.] ////// object ICollection.SyncRoot { get { return this; } } ///[To be supplied.] ////// public void CopyTo(Array array, int index) { this.sorts.CopyTo(array, index); } // IEnumerable // ///[To be supplied.] ////// IEnumerator IEnumerable.GetEnumerator() { return this.sorts.GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel { using System.Collections; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class ListSortDescriptionCollection : IList { ArrayList sorts = new ArrayList(); ///[To be supplied.] ////// public ListSortDescriptionCollection() { } ///[To be supplied.] ////// public ListSortDescriptionCollection(ListSortDescription[] sorts) { if (sorts != null) { for (int i = 0; i < sorts.Length; i ++) { this.sorts.Add(sorts[i]); } } } ///[To be supplied.] ////// public ListSortDescription this[int index] { get { return (ListSortDescription) sorts[index]; } set { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } } // IList implementation // ///[To be supplied.] ////// bool IList.IsFixedSize { get { return true; } } ///[To be supplied.] ////// bool IList.IsReadOnly { get { return true; } } ///[To be supplied.] ////// object IList.this[int index] { get { return this[index]; } set { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } } ///[To be supplied.] ////// int IList.Add(object value) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// void IList.Clear() { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// public bool Contains(object value) { return ((IList)this.sorts).Contains(value); } ///[To be supplied.] ////// public int IndexOf(object value) { return ((IList)this.sorts).IndexOf(value); } ///[To be supplied.] ////// void IList.Insert(int index, object value) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// void IList.Remove(object value) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } ///[To be supplied.] ////// void IList.RemoveAt(int index) { throw new InvalidOperationException(SR.GetString(SR.CantModifyListSortDescriptionCollection)); } // ICollection // ///[To be supplied.] ////// public int Count { get { return this.sorts.Count; } } ///[To be supplied.] ////// bool ICollection.IsSynchronized { get { // true because after the constructor finished running the ListSortDescriptionCollection is Read Only return true; } } ///[To be supplied.] ////// object ICollection.SyncRoot { get { return this; } } ///[To be supplied.] ////// public void CopyTo(Array array, int index) { this.sorts.CopyTo(array, index); } // IEnumerable // ///[To be supplied.] ////// IEnumerator IEnumerable.GetEnumerator() { return this.sorts.GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MenuBindingsEditor.cs
- EntityClientCacheKey.cs
- BuildProvidersCompiler.cs
- COM2PropertyBuilderUITypeEditor.cs
- WorkflowInstanceExtensionManager.cs
- ContentPlaceHolderDesigner.cs
- XXXOnTypeBuilderInstantiation.cs
- DoubleAnimationBase.cs
- DependencyObjectProvider.cs
- RoleBoolean.cs
- QuaternionAnimation.cs
- versioninfo.cs
- FtpWebResponse.cs
- Guid.cs
- Thickness.cs
- TaiwanLunisolarCalendar.cs
- DataTableCollection.cs
- _ChunkParse.cs
- HyperlinkAutomationPeer.cs
- TextSimpleMarkerProperties.cs
- TextSpan.cs
- WebPartConnectionsCancelVerb.cs
- EventListenerClientSide.cs
- SqlUnionizer.cs
- SimpleWebHandlerParser.cs
- ColorTransformHelper.cs
- WinCategoryAttribute.cs
- ObjectCacheHost.cs
- ToolStripContainer.cs
- ProcessRequestArgs.cs
- CodePageEncoding.cs
- PlainXmlWriter.cs
- SizeKeyFrameCollection.cs
- ContainerFilterService.cs
- SqlGenericUtil.cs
- AutoGeneratedField.cs
- TripleDES.cs
- InstanceNotReadyException.cs
- ListViewPagedDataSource.cs
- Lease.cs
- WeakReadOnlyCollection.cs
- PrivilegedConfigurationManager.cs
- CachingHintValidation.cs
- Clipboard.cs
- IntegerValidatorAttribute.cs
- AssemblyBuilder.cs
- HostedTcpTransportManager.cs
- validation.cs
- NativeObjectSecurity.cs
- Pts.cs
- BitmapEffectDrawingContextWalker.cs
- MediaScriptCommandRoutedEventArgs.cs
- Listen.cs
- DataRelationCollection.cs
- UnhandledExceptionEventArgs.cs
- CompiledRegexRunnerFactory.cs
- PkcsUtils.cs
- SrgsElementFactory.cs
- XmlSerializationGeneratedCode.cs
- documentsequencetextpointer.cs
- HuffCodec.cs
- MenuCommands.cs
- ClientSettingsSection.cs
- ToolZoneDesigner.cs
- Registry.cs
- StyleBamlRecordReader.cs
- AddingNewEventArgs.cs
- RTLAwareMessageBox.cs
- basevalidator.cs
- ExtentCqlBlock.cs
- DropShadowBitmapEffect.cs
- LocatorGroup.cs
- HybridDictionary.cs
- NumericUpDownAcceleration.cs
- DbConnectionHelper.cs
- ListViewItem.cs
- UserControlCodeDomTreeGenerator.cs
- OleDbParameterCollection.cs
- TransformDescriptor.cs
- ExternalException.cs
- PackageRelationship.cs
- AbandonedMutexException.cs
- BlurBitmapEffect.cs
- BinaryObjectWriter.cs
- BrowserTree.cs
- AliasExpr.cs
- EditorZoneBase.cs
- ApplicationServiceHelper.cs
- RuleProcessor.cs
- ParagraphVisual.cs
- OracleConnectionString.cs
- DataContractSerializer.cs
- SizeKeyFrameCollection.cs
- EdmEntityTypeAttribute.cs
- OracleCommandSet.cs
- MeasurementDCInfo.cs
- RijndaelManaged.cs
- IntersectQueryOperator.cs
- DesignerDataStoredProcedure.cs
- Cursor.cs