Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / RepeaterItemCollection.cs / 1 / RepeaterItemCollection.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 RepeaterItemCollection : ICollection { private ArrayList items; ///Encapsulates the collection of ///objects within a control. /// Initializes a new instance of /// the public RepeaterItemCollection(ArrayList items) { this.items = items; } ///class with the specified items. /// /// public int Count { get { return items.Count; } } ///Gets the item count of the collection. ////// 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 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 RepeaterItem this[int index] { get { return(RepeaterItem)items[index]; } } ///Gets a ///referenced by the specified ordinal index value in /// 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 IEnumerator GetEnumerator() { return items.GetEnumerator(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Returns an enumerator of all ///controls within the /// collection.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigurationManagerHelperFactory.cs
- WindowsAuthenticationEventArgs.cs
- DictionaryContent.cs
- TreeNode.cs
- PrivacyNoticeBindingElementImporter.cs
- PDBReader.cs
- RouteItem.cs
- isolationinterop.cs
- DeploymentExceptionMapper.cs
- BooleanStorage.cs
- SqlBooleanizer.cs
- Drawing.cs
- IPipelineRuntime.cs
- DataRecordInfo.cs
- AnnotationAdorner.cs
- LogRestartAreaEnumerator.cs
- DependencyPropertyKind.cs
- ReadOnlyTernaryTree.cs
- HwndTarget.cs
- AssertUtility.cs
- AsyncWaitHandle.cs
- MetadataUtil.cs
- DeclaredTypeValidator.cs
- Scripts.cs
- XmlAttributeCache.cs
- SelectionGlyph.cs
- Monitor.cs
- CodeVariableReferenceExpression.cs
- ResourceWriter.cs
- CurrentChangingEventManager.cs
- SqlSelectStatement.cs
- AnnotationHelper.cs
- RemotingConfiguration.cs
- IgnoreFlushAndCloseStream.cs
- WindowsListView.cs
- RelatedCurrencyManager.cs
- CorrelationActionMessageFilter.cs
- Command.cs
- RegistryPermission.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- TextServicesCompartmentContext.cs
- SessionStateUtil.cs
- CompositeScriptReferenceEventArgs.cs
- DefinitionUpdate.cs
- TextEditorContextMenu.cs
- BindingListCollectionView.cs
- ParamArrayAttribute.cs
- WeakRefEnumerator.cs
- TextPenaltyModule.cs
- SerializationAttributes.cs
- CaseInsensitiveHashCodeProvider.cs
- LineUtil.cs
- IList.cs
- Publisher.cs
- CodeCompiler.cs
- WebException.cs
- ListDesigner.cs
- DeflateStreamAsyncResult.cs
- Pointer.cs
- _OSSOCK.cs
- ConfigurationSectionHelper.cs
- RegexCharClass.cs
- TraceContextEventArgs.cs
- ActionFrame.cs
- QilName.cs
- EntityWrapperFactory.cs
- BaseCollection.cs
- TemplateComponentConnector.cs
- PeerObject.cs
- GridViewCancelEditEventArgs.cs
- DecodeHelper.cs
- ValidationSummary.cs
- SelectionWordBreaker.cs
- EncodingStreamWrapper.cs
- ParseHttpDate.cs
- XmlChildEnumerator.cs
- Rule.cs
- ElapsedEventArgs.cs
- StaticTextPointer.cs
- ExecutionEngineException.cs
- Point4D.cs
- InstanceStore.cs
- Vector3D.cs
- recordstatescratchpad.cs
- SecureStringHasher.cs
- StylusDevice.cs
- FixedSOMImage.cs
- printdlgexmarshaler.cs
- PropertyInfoSet.cs
- SqlGenericUtil.cs
- AuthenticationConfig.cs
- OrthographicCamera.cs
- WebResourceAttribute.cs
- TransformationRules.cs
- WeakReferenceEnumerator.cs
- BaseConfigurationRecord.cs
- DependencySource.cs
- HttpResponseWrapper.cs
- Assembly.cs
- HostSecurityManager.cs