Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebParts / WebPartZoneCollection.cs / 1 / WebPartZoneCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Globalization; using System.Security.Permissions; ////// Read-only collection of WebPartZones. Collection cannot be modified after contstruction. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartZoneCollection : ReadOnlyCollectionBase { public WebPartZoneCollection() { } public WebPartZoneCollection(ICollection webPartZones) { if (webPartZones == null) { throw new ArgumentNullException("webPartZones"); } foreach (object obj in webPartZones) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "webPartZones"); } if (!(obj is WebPartZone)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "WebPartZone"), "webPartZones"); } InnerList.Add(obj); } } internal int Add(WebPartZoneBase value) { return InnerList.Add(value); } public bool Contains(WebPartZoneBase value) { return InnerList.Contains(value); } public int IndexOf(WebPartZoneBase value) { return InnerList.IndexOf(value); } public WebPartZoneBase this[int index] { get { return (WebPartZoneBase) InnerList[index]; } } public WebPartZoneBase this[string id] { get { WebPartZoneBase selectedZone = null; foreach (WebPartZoneBase zone in InnerList) { if (String.Equals(zone.ID, id, StringComparison.OrdinalIgnoreCase)) { selectedZone = zone; break; } } return selectedZone; } } ////// public void CopyTo(WebPartZoneBase[] array, int index) { InnerList.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Copies contents from the collection to a specified array with a /// specified starting index. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections; using System.Globalization; using System.Security.Permissions; ////// Read-only collection of WebPartZones. Collection cannot be modified after contstruction. /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class WebPartZoneCollection : ReadOnlyCollectionBase { public WebPartZoneCollection() { } public WebPartZoneCollection(ICollection webPartZones) { if (webPartZones == null) { throw new ArgumentNullException("webPartZones"); } foreach (object obj in webPartZones) { if (obj == null) { throw new ArgumentException(SR.GetString(SR.Collection_CantAddNull), "webPartZones"); } if (!(obj is WebPartZone)) { throw new ArgumentException(SR.GetString(SR.Collection_InvalidType, "WebPartZone"), "webPartZones"); } InnerList.Add(obj); } } internal int Add(WebPartZoneBase value) { return InnerList.Add(value); } public bool Contains(WebPartZoneBase value) { return InnerList.Contains(value); } public int IndexOf(WebPartZoneBase value) { return InnerList.IndexOf(value); } public WebPartZoneBase this[int index] { get { return (WebPartZoneBase) InnerList[index]; } } public WebPartZoneBase this[string id] { get { WebPartZoneBase selectedZone = null; foreach (WebPartZoneBase zone in InnerList) { if (String.Equals(zone.ID, id, StringComparison.OrdinalIgnoreCase)) { selectedZone = zone; break; } } return selectedZone; } } ////// public void CopyTo(WebPartZoneBase[] array, int index) { InnerList.CopyTo(array, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Copies contents from the collection to a specified array with a /// specified starting index. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CommandDevice.cs
- XmlProcessingInstruction.cs
- Effect.cs
- DatagridviewDisplayedBandsData.cs
- DbConnectionHelper.cs
- CrossContextChannel.cs
- Triangle.cs
- SubstitutionList.cs
- SecurityChannelFaultConverter.cs
- DockProviderWrapper.cs
- XmlArrayItemAttributes.cs
- WindowsEditBoxRange.cs
- ASCIIEncoding.cs
- coordinatorfactory.cs
- HttpContext.cs
- Crypto.cs
- ComboBoxAutomationPeer.cs
- CheckBoxBaseAdapter.cs
- XmlSchemaExternal.cs
- InvalidPropValue.cs
- JournalEntryStack.cs
- DataSourceListEditor.cs
- CoTaskMemHandle.cs
- ExpressionCopier.cs
- RealizationContext.cs
- GeneralTransform.cs
- Socket.cs
- XmlArrayItemAttribute.cs
- SoapCommonClasses.cs
- CultureSpecificCharacterBufferRange.cs
- Tuple.cs
- WebServiceFaultDesigner.cs
- updateconfighost.cs
- ProviderCommandInfoUtils.cs
- ExpressionTextBox.xaml.cs
- KerberosRequestorSecurityToken.cs
- FileRegion.cs
- SqlInternalConnectionSmi.cs
- TraceListeners.cs
- PropertyIDSet.cs
- ListViewPagedDataSource.cs
- InputMethodStateChangeEventArgs.cs
- SettingsPropertyIsReadOnlyException.cs
- QueryOperatorEnumerator.cs
- ServicePointManager.cs
- XmlNotation.cs
- TreeNodeStyleCollection.cs
- WeakHashtable.cs
- TextLineResult.cs
- X509Certificate2Collection.cs
- StringInfo.cs
- TextEditor.cs
- SQLDateTime.cs
- XmlSchemaImport.cs
- XmlSchemaElement.cs
- InvalidCastException.cs
- DataGridViewComboBoxCell.cs
- SelectManyQueryOperator.cs
- Decimal.cs
- RTTrackingProfile.cs
- RequestResizeEvent.cs
- OlePropertyStructs.cs
- DataListItem.cs
- CoreSwitches.cs
- PreviewPageInfo.cs
- UntypedNullExpression.cs
- MarkedHighlightComponent.cs
- DataGridColumnsPage.cs
- Byte.cs
- XmlWriterDelegator.cs
- XmlSchemaParticle.cs
- SqlGenerator.cs
- DataFormats.cs
- WindowsHyperlink.cs
- DataGridViewTopLeftHeaderCell.cs
- RegistryDataKey.cs
- TypeInfo.cs
- JournalEntryListConverter.cs
- ItemCheckEvent.cs
- LayoutExceptionEventArgs.cs
- HwndSource.cs
- FindSimilarActivitiesVerb.cs
- EditorBrowsableAttribute.cs
- WebPartDisplayModeEventArgs.cs
- GlyphInfoList.cs
- Image.cs
- SqlConnectionString.cs
- DataServiceQuery.cs
- WebPartConnectionsDisconnectVerb.cs
- FontEmbeddingManager.cs
- RowParagraph.cs
- XmlBoundElement.cs
- CookieParameter.cs
- Scene3D.cs
- TiffBitmapEncoder.cs
- KnownBoxes.cs
- WebProxyScriptElement.cs
- HttpCacheVaryByContentEncodings.cs
- MetadataPropertyAttribute.cs
- WindowsIPAddress.cs