Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / DesignerActionListCollection.cs / 1 / DesignerActionListCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design { using System; using System.Collections; using System.Diagnostics; ////// /// [System.Runtime.InteropServices.ComVisible(true)] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.InheritanceDemand, Name="FullTrust")] [System.Security.Permissions.PermissionSetAttribute(System.Security.Permissions.SecurityAction.LinkDemand, Name="FullTrust")] public class DesignerActionListCollection : CollectionBase { ///[To be supplied.] ////// /// public DesignerActionListCollection() { } internal DesignerActionListCollection(DesignerActionList actionList) { this.Add(actionList); } ///[To be supplied.] ////// /// public DesignerActionListCollection(DesignerActionList[] value) { AddRange(value); } ///[To be supplied.] ////// /// public DesignerActionList this[int index] { get { return (DesignerActionList)(List[index]); } set { List[index] = value; } } ///[To be supplied.] ////// /// public int Add(DesignerActionList value) { return List.Add(value); } ///[To be supplied.] ////// /// public void AddRange(DesignerActionList[] value) { if (value == null) { throw new ArgumentNullException("value"); } for (int i = 0; ((i) < (value.Length)); i = ((i) + (1))) { this.Add(value[i]); } } ///[To be supplied.] ////// /// public void AddRange(DesignerActionListCollection value) { if (value == null) { throw new ArgumentNullException("value"); } int currentCount = value.Count; for (int i = 0; i < currentCount; i = ((i) + (1))) { this.Add(value[i]); } } ///[To be supplied.] ////// /// public void Insert(int index, DesignerActionList value) { List.Insert(index, value); } ///[To be supplied.] ////// /// public int IndexOf(DesignerActionList value) { return List.IndexOf(value); } ///[To be supplied.] ////// /// public bool Contains(DesignerActionList value) { return List.Contains(value); } ///[To be supplied.] ////// /// public void Remove(DesignerActionList value) { List.Remove(value); } ///[To be supplied.] ////// /// public void CopyTo(DesignerActionList[] array, int index) { List.CopyTo(array, index); } ///[To be supplied.] ////// /// protected override void OnSet(int index, object oldValue, object newValue) { } ///[To be supplied.] ////// /// protected override void OnInsert(int index, object value) { } ///[To be supplied.] ////// /// protected override void OnClear() { } ///[To be supplied.] ////// /// protected override void OnRemove(int index, object value) { } ///[To be supplied.] ////// /// protected override void OnValidate(object value) { Debug.Assert(value != null, "Don't add null actionlist!"); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InstancePersistenceException.cs
- EnumerableRowCollection.cs
- EtwTrace.cs
- sqlstateclientmanager.cs
- JavascriptXmlWriterWrapper.cs
- ResourceKey.cs
- WindowPatternIdentifiers.cs
- MemoryResponseElement.cs
- ComponentResourceManager.cs
- PublishLicense.cs
- OdbcEnvironment.cs
- NegotiateStream.cs
- ExponentialEase.cs
- XmlImplementation.cs
- Single.cs
- SQLSingleStorage.cs
- SHA512Managed.cs
- CreateRefExpr.cs
- DbgUtil.cs
- WindowsStartMenu.cs
- SqlParameterCollection.cs
- DirectoryInfo.cs
- RuleAttributes.cs
- XamlTreeBuilderBamlRecordWriter.cs
- PropertiesTab.cs
- PrintEvent.cs
- PopupEventArgs.cs
- MessageQueueException.cs
- DataGridCheckBoxColumn.cs
- Bitmap.cs
- RelationHandler.cs
- JavaScriptObjectDeserializer.cs
- arabicshape.cs
- StringResourceManager.cs
- CategoryAttribute.cs
- ByteAnimation.cs
- DependsOnAttribute.cs
- UnSafeCharBuffer.cs
- SchemaImporterExtensionsSection.cs
- Transform3DCollection.cs
- ControlIdConverter.cs
- RangeValueProviderWrapper.cs
- NullableFloatAverageAggregationOperator.cs
- XmlBoundElement.cs
- OpenTypeLayout.cs
- XmlILTrace.cs
- ContextMenuService.cs
- DataGridViewImageColumn.cs
- DetailsViewInsertEventArgs.cs
- Typography.cs
- RegexCharClass.cs
- Bidi.cs
- QueueProcessor.cs
- SelectionProcessor.cs
- safex509handles.cs
- EntityDataSourceWrapperCollection.cs
- NetworkCredential.cs
- Stroke2.cs
- Pair.cs
- CaseExpr.cs
- DesignerActionTextItem.cs
- ZoneIdentityPermission.cs
- DataRowCollection.cs
- TriggerCollection.cs
- MissingMemberException.cs
- BamlRecordHelper.cs
- PageDeviceFont.cs
- HandleCollector.cs
- NotifyInputEventArgs.cs
- RootBrowserWindowProxy.cs
- ToolStripOverflow.cs
- SecurityResources.cs
- OutputCacheModule.cs
- PropertyValidationContext.cs
- DateTimeFormatInfoScanner.cs
- ObjectDisposedException.cs
- CustomPopupPlacement.cs
- SQLChars.cs
- IgnoreDeviceFilterElement.cs
- DataSourceView.cs
- MessageSecurityTokenVersion.cs
- Events.cs
- UInt16.cs
- DataBoundControlHelper.cs
- HttpCapabilitiesSectionHandler.cs
- HttpFileCollection.cs
- HtmlInputHidden.cs
- ImageListStreamer.cs
- PaintEvent.cs
- ListView.cs
- IxmlLineInfo.cs
- HorizontalAlignConverter.cs
- FixedSOMPageElement.cs
- Memoizer.cs
- DatatypeImplementation.cs
- RelationshipEndMember.cs
- PermissionListSet.cs
- DecoderNLS.cs
- MemoryPressure.cs
- FlowLayoutSettings.cs