Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- AttachedPropertyDescriptor.cs
- PropertyInformationCollection.cs
- ViewCellSlot.cs
- CacheAxisQuery.cs
- UnionCodeGroup.cs
- ToolStripRendererSwitcher.cs
- OracleParameterBinding.cs
- PersistenceTypeAttribute.cs
- TextPointer.cs
- UnicastIPAddressInformationCollection.cs
- InvokePatternIdentifiers.cs
- AdPostCacheSubstitution.cs
- EditorOptionAttribute.cs
- TemplateControl.cs
- _BaseOverlappedAsyncResult.cs
- ApplicationId.cs
- PackagePartCollection.cs
- WindowsAltTab.cs
- Sorting.cs
- CreateDataSourceDialog.cs
- KeyValueConfigurationCollection.cs
- SafeFindHandle.cs
- InsufficientMemoryException.cs
- DataGridLinkButton.cs
- ReaderWriterLock.cs
- UICuesEvent.cs
- MemberDomainMap.cs
- SctClaimSerializer.cs
- TemplateColumn.cs
- DataRowView.cs
- _DigestClient.cs
- RootBrowserWindow.cs
- SyntaxCheck.cs
- RectangleGeometry.cs
- IIS7UserPrincipal.cs
- ProcessThreadCollection.cs
- MetadataSection.cs
- StyleTypedPropertyAttribute.cs
- CustomAssemblyResolver.cs
- EntryWrittenEventArgs.cs
- ScrollableControlDesigner.cs
- ListViewCancelEventArgs.cs
- BatchParser.cs
- CrossSiteScriptingValidation.cs
- WebControlAdapter.cs
- ObjectStateEntry.cs
- PathGradientBrush.cs
- HeaderedContentControl.cs
- PersianCalendar.cs
- EmptyControlCollection.cs
- Publisher.cs
- OracleDataAdapter.cs
- CalendarSelectionChangedEventArgs.cs
- VirtualizingPanel.cs
- RegularExpressionValidator.cs
- XmlILIndex.cs
- RegisteredArrayDeclaration.cs
- XmlSchemaException.cs
- InheritablePropertyChangeInfo.cs
- Types.cs
- sqlser.cs
- BitConverter.cs
- StrongNamePublicKeyBlob.cs
- CacheForPrimitiveTypes.cs
- SemaphoreSlim.cs
- IntegerValidatorAttribute.cs
- DocComment.cs
- WinInet.cs
- EntityDataReader.cs
- DataGridColumnHeader.cs
- FormViewDeleteEventArgs.cs
- CellIdBoolean.cs
- SmtpCommands.cs
- ResourceContainer.cs
- GridViewUpdateEventArgs.cs
- TextElementEditingBehaviorAttribute.cs
- FileIOPermission.cs
- XmlTypeAttribute.cs
- Hashtable.cs
- FlowDocumentPaginator.cs
- FlowDocumentReaderAutomationPeer.cs
- XmlSchemaImporter.cs
- BasicViewGenerator.cs
- TaiwanCalendar.cs
- NativeMsmqMessage.cs
- CryptoHandle.cs
- SslStream.cs
- HttpProcessUtility.cs
- DataGridItemAttachedStorage.cs
- ImportStoreException.cs
- Column.cs
- TimeSpanStorage.cs
- TextModifier.cs
- SafeLibraryHandle.cs
- Utility.cs
- XmlSchemaObjectTable.cs
- ScriptControlManager.cs
- ResourcesGenerator.cs
- SmiContextFactory.cs
- CalculatedColumn.cs