Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / Design / DesignerVerbCollection.cs / 1 / DesignerVerbCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design { using System; using System.Collections; using System.Diagnostics; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] [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 DesignerVerbCollection : CollectionBase { ///[To be supplied.] ////// public DesignerVerbCollection() { } ///[To be supplied.] ////// public DesignerVerbCollection(DesignerVerb[] value) { AddRange(value); } ///[To be supplied.] ////// public DesignerVerb this[int index] { get { return (DesignerVerb)(List[index]); } set { List[index] = value; } } ///[To be supplied.] ////// public int Add(DesignerVerb value) { return List.Add(value); } ///[To be supplied.] ////// public void AddRange(DesignerVerb[] 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(DesignerVerbCollection 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, DesignerVerb value) { List.Insert(index, value); } ///[To be supplied.] ////// public int IndexOf(DesignerVerb value) { return List.IndexOf(value); } ///[To be supplied.] ////// public bool Contains(DesignerVerb value) { return List.Contains(value); } ///[To be supplied.] ////// public void Remove(DesignerVerb value) { List.Remove(value); } ///[To be supplied.] ////// public void CopyTo(DesignerVerb[] 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 verbs!"); } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- InstancePersistenceCommand.cs
- ProviderUtil.cs
- DataTable.cs
- CodeSubDirectoriesCollection.cs
- DependencyPropertyKey.cs
- MetadataException.cs
- SizeChangedEventArgs.cs
- CryptoStream.cs
- ObjectSet.cs
- DecimalKeyFrameCollection.cs
- SrgsItemList.cs
- objectresult_tresulttype.cs
- CompleteWizardStep.cs
- RichTextBox.cs
- FixedMaxHeap.cs
- IItemProperties.cs
- AffineTransform3D.cs
- ManagedFilter.cs
- IconEditor.cs
- XmlQualifiedName.cs
- HttpResponse.cs
- XmlAnyElementAttributes.cs
- FlowDocumentReader.cs
- EmptyEnumerator.cs
- ReferentialConstraint.cs
- PathFigure.cs
- Tablet.cs
- StrongNameUtility.cs
- cookieexception.cs
- ExpressionEditorAttribute.cs
- UnhandledExceptionEventArgs.cs
- XamlTreeBuilderBamlRecordWriter.cs
- SrgsElementFactoryCompiler.cs
- NetworkCredential.cs
- ConfigXmlDocument.cs
- QilSortKey.cs
- PropertyValueEditor.cs
- StyleCollection.cs
- DocobjHost.cs
- FaultCallbackWrapper.cs
- TextTreeNode.cs
- TextProperties.cs
- GenericWebPart.cs
- TypeLoadException.cs
- ContainerSelectorActiveEvent.cs
- ContextMarshalException.cs
- BeginEvent.cs
- XmlSchemaObjectCollection.cs
- XPathAncestorQuery.cs
- XmlTextEncoder.cs
- RuntimeConfigurationRecord.cs
- PropertyDescriptorGridEntry.cs
- TypeNameConverter.cs
- SettingsBase.cs
- BuilderPropertyEntry.cs
- DrawToolTipEventArgs.cs
- CompiledQueryCacheKey.cs
- ObjectStorage.cs
- PageThemeParser.cs
- EtwTrace.cs
- PanelStyle.cs
- TypefaceMap.cs
- TypeDescriptionProviderAttribute.cs
- RegexCaptureCollection.cs
- StateDesignerConnector.cs
- CodeGeneratorOptions.cs
- SqlDependencyUtils.cs
- DependencyPropertyConverter.cs
- SmiEventStream.cs
- BitmapEffectInputData.cs
- SplitterEvent.cs
- UserControlCodeDomTreeGenerator.cs
- AlternateViewCollection.cs
- MetafileHeader.cs
- Rijndael.cs
- ApplyTemplatesAction.cs
- VisualBrush.cs
- SinglePageViewer.cs
- EnvironmentPermission.cs
- ObjectDataSourceStatusEventArgs.cs
- FlowchartStart.xaml.cs
- GenericQueueSurrogate.cs
- ControlBindingsCollection.cs
- NativeMethods.cs
- AddInAdapter.cs
- ExtensionSurface.cs
- DataTableNewRowEvent.cs
- Int32Collection.cs
- TreeViewCancelEvent.cs
- RepeaterItemCollection.cs
- XmlSchemaImport.cs
- SettingsBindableAttribute.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- DivideByZeroException.cs
- StateChangeEvent.cs
- InternalCompensate.cs
- ConfigurationManagerHelper.cs
- TypedColumnHandler.cs
- GiveFeedbackEventArgs.cs
- ByteStreamMessage.cs