Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- PropertyGeneratedEventArgs.cs
- HTMLTagNameToTypeMapper.cs
- DataStorage.cs
- DoubleCollection.cs
- MenuItem.cs
- MarshalDirectiveException.cs
- NativeMethods.cs
- odbcmetadatafactory.cs
- SchemaElementLookUpTable.cs
- Internal.cs
- NTAccount.cs
- ModelUIElement3D.cs
- filewebrequest.cs
- UnsafeNativeMethods.cs
- LifetimeMonitor.cs
- CanonicalXml.cs
- BitConverter.cs
- IgnoreDataMemberAttribute.cs
- HtmlEncodedRawTextWriter.cs
- DatePickerDateValidationErrorEventArgs.cs
- TimeManager.cs
- LayoutSettings.cs
- WeakHashtable.cs
- CommandDevice.cs
- CryptoConfig.cs
- MimeObjectFactory.cs
- PackWebRequest.cs
- CancellationToken.cs
- ProfilePropertyNameValidator.cs
- PinnedBufferMemoryStream.cs
- EntryWrittenEventArgs.cs
- QuaternionConverter.cs
- SynchronizationContext.cs
- MessageBox.cs
- BasePropertyDescriptor.cs
- TreeNodeStyleCollection.cs
- RegexRunner.cs
- CreateParams.cs
- smtpconnection.cs
- CopyOnWriteList.cs
- OleDbWrapper.cs
- WmpBitmapEncoder.cs
- ConditionalWeakTable.cs
- PaintEvent.cs
- ConstraintEnumerator.cs
- TextLineResult.cs
- XmlDownloadManager.cs
- SimpleTypeResolver.cs
- KnownTypes.cs
- HttpResponseMessageProperty.cs
- prompt.cs
- Matrix3DStack.cs
- ControlBuilder.cs
- Polyline.cs
- ResXBuildProvider.cs
- BlockingCollection.cs
- CompositeCollection.cs
- PropertyDescriptors.cs
- ZipQueryOperator.cs
- CreatingCookieEventArgs.cs
- SqlMetaData.cs
- CodePrimitiveExpression.cs
- MetaModel.cs
- InvalidAsynchronousStateException.cs
- IPAddress.cs
- RepeatBehavior.cs
- OrderByBuilder.cs
- PostBackOptions.cs
- Parameter.cs
- DataObjectPastingEventArgs.cs
- ConfigXmlReader.cs
- ping.cs
- EdmSchemaError.cs
- PropertyDescriptor.cs
- HttpCachePolicyElement.cs
- RtType.cs
- DivideByZeroException.cs
- DefaultHttpHandler.cs
- DBSchemaRow.cs
- RC2.cs
- TemplateColumn.cs
- NativeActivity.cs
- FormView.cs
- HtmlElement.cs
- TrackingServices.cs
- CodeAccessSecurityEngine.cs
- AssociationSetEnd.cs
- KeyValuePairs.cs
- Matrix3D.cs
- CalendarDay.cs
- ByteRangeDownloader.cs
- StorageModelBuildProvider.cs
- PolicyUnit.cs
- BuildProviderAppliesToAttribute.cs
- GroupItem.cs
- SQlBooleanStorage.cs
- DbConnectionPoolCounters.cs
- FormViewDeleteEventArgs.cs
- MetabaseSettings.cs
- SiblingIterators.cs