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
- X509AsymmetricSecurityKey.cs
- XmlSchemaCollection.cs
- SQLResource.cs
- PatternMatcher.cs
- SimplePropertyEntry.cs
- InvalidFilterCriteriaException.cs
- ErrorHandler.cs
- newitemfactory.cs
- BindUriHelper.cs
- RuntimeConfig.cs
- ByteRangeDownloader.cs
- Grammar.cs
- Axis.cs
- ProfessionalColors.cs
- BooleanAnimationUsingKeyFrames.cs
- UnionCodeGroup.cs
- SvcMapFileLoader.cs
- SimpleTextLine.cs
- CodeExporter.cs
- RenderTargetBitmap.cs
- NativeMethods.cs
- ToolStripArrowRenderEventArgs.cs
- TextRange.cs
- Component.cs
- Errors.cs
- Asn1IntegerConverter.cs
- MemberProjectedSlot.cs
- AssemblyAttributesGoHere.cs
- DataGridViewRowCollection.cs
- TaskFormBase.cs
- WorkflowApplicationAbortedException.cs
- VirtualPath.cs
- ObjectViewFactory.cs
- InternalBufferManager.cs
- BaseParser.cs
- TemplateLookupAction.cs
- ScrollChrome.cs
- DesignerValidatorAdapter.cs
- GuidConverter.cs
- UpdateProgress.cs
- DbDataRecord.cs
- AppDomainAttributes.cs
- Parser.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- FocusWithinProperty.cs
- ZoneIdentityPermission.cs
- DataGridColumnsPage.cs
- GridPatternIdentifiers.cs
- ExceptionUtil.cs
- SmtpNtlmAuthenticationModule.cs
- ParameterElement.cs
- FolderBrowserDialog.cs
- PropertyDescriptorGridEntry.cs
- SplitContainer.cs
- PageAsyncTaskManager.cs
- FunctionImportMapping.ReturnTypeRenameMapping.cs
- GroupByExpressionRewriter.cs
- ConfigurationManagerInternal.cs
- DataColumnMappingCollection.cs
- _HTTPDateParse.cs
- GlobalizationSection.cs
- OrderByLifter.cs
- XmlDocumentType.cs
- StringSource.cs
- SqlBulkCopyColumnMapping.cs
- QuerySelectOp.cs
- HtmlTitle.cs
- HashMembershipCondition.cs
- UnknownWrapper.cs
- FormViewInsertEventArgs.cs
- ChildDocumentBlock.cs
- CoordinationService.cs
- InstalledFontCollection.cs
- EventLogEntryCollection.cs
- WebControl.cs
- WebBrowserHelper.cs
- WindowsTreeView.cs
- BypassElement.cs
- DrawingCollection.cs
- CompilerError.cs
- ToolStripTextBox.cs
- BitmapFrameDecode.cs
- ColorMatrix.cs
- SmtpNegotiateAuthenticationModule.cs
- CellPartitioner.cs
- AQNBuilder.cs
- FormViewInsertedEventArgs.cs
- EdmFunction.cs
- StateDesigner.cs
- Matrix.cs
- Preprocessor.cs
- AdornedElementPlaceholder.cs
- VisualBasicHelper.cs
- ErrorStyle.cs
- RepeaterItem.cs
- XmlSchemaSimpleContentExtension.cs
- ScalarType.cs
- List.cs
- SemanticBasicElement.cs
- AssemblyResolver.cs