Code:
/ FX-1434 / FX-1434 / 1.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
- LongValidator.cs
- ContentElement.cs
- MouseButtonEventArgs.cs
- HwndSourceKeyboardInputSite.cs
- MatrixTransform.cs
- OrderPreservingPipeliningSpoolingTask.cs
- XmlDeclaration.cs
- TailPinnedEventArgs.cs
- MsmqIntegrationSecurityElement.cs
- HttpListenerPrefixCollection.cs
- ExpressionVisitorHelpers.cs
- RawMouseInputReport.cs
- NodeInfo.cs
- ImmutableObjectAttribute.cs
- EtwProvider.cs
- SizeAnimationClockResource.cs
- AsyncResult.cs
- ManagedFilter.cs
- System.Data_BID.cs
- ViewService.cs
- ForeignKeyConstraint.cs
- ChildDocumentBlock.cs
- Bookmark.cs
- LoadItemsEventArgs.cs
- ObjectManager.cs
- DataRecordInfo.cs
- ErrorInfoXmlDocument.cs
- DefaultValueConverter.cs
- OdbcEnvironmentHandle.cs
- ObjectResult.cs
- XmlSchemaCollection.cs
- NativeMethods.cs
- ConnectionStringsExpressionBuilder.cs
- Int64KeyFrameCollection.cs
- Menu.cs
- CorrelationRequestContext.cs
- QuadraticBezierSegment.cs
- SecurityElement.cs
- ContextMenuService.cs
- DocobjHost.cs
- sqlinternaltransaction.cs
- Compiler.cs
- CapabilitiesAssignment.cs
- UnionExpr.cs
- CustomAttributeFormatException.cs
- XmlCompatibilityReader.cs
- IconConverter.cs
- Path.cs
- Image.cs
- IdentityManager.cs
- dbdatarecord.cs
- GenericWebPart.cs
- ListViewCancelEventArgs.cs
- XmlNodeChangedEventArgs.cs
- ValueTable.cs
- DivideByZeroException.cs
- SqlWebEventProvider.cs
- TextBlockAutomationPeer.cs
- xdrvalidator.cs
- HtmlEmptyTagControlBuilder.cs
- TreeView.cs
- XmlLoader.cs
- OrderByBuilder.cs
- CrossSiteScriptingValidation.cs
- EntityTypeBase.cs
- DragDrop.cs
- VirtualDirectoryMappingCollection.cs
- XmlLangPropertyAttribute.cs
- CrossContextChannel.cs
- LogRestartAreaEnumerator.cs
- COAUTHINFO.cs
- ISAPIRuntime.cs
- ResXFileRef.cs
- EntityReference.cs
- ScriptResourceMapping.cs
- WmlObjectListAdapter.cs
- ObjectDataSourceSelectingEventArgs.cs
- StringAnimationUsingKeyFrames.cs
- InputScopeNameConverter.cs
- WebServiceParameterData.cs
- WebAdminConfigurationHelper.cs
- CommunicationException.cs
- ResourcePermissionBase.cs
- GraphicsPathIterator.cs
- NegationPusher.cs
- PropertyTabChangedEvent.cs
- _LazyAsyncResult.cs
- XmlMemberMapping.cs
- ILGenerator.cs
- LayoutEvent.cs
- IBuiltInEvidence.cs
- RegexRunner.cs
- XmlProcessingInstruction.cs
- PtsHelper.cs
- AdornerDecorator.cs
- Color.cs
- VerticalAlignConverter.cs
- PersonalizablePropertyEntry.cs
- ObjectSet.cs
- MobileControlBuilder.cs