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
- SolidBrush.cs
- ColumnMapVisitor.cs
- DataQuery.cs
- DebugTraceHelper.cs
- BitmapEffectGeneralTransform.cs
- InkCollectionBehavior.cs
- WindowsRebar.cs
- StateManagedCollection.cs
- ExtentCqlBlock.cs
- ServiceOperationListItemList.cs
- Message.cs
- CompiledRegexRunner.cs
- Tokenizer.cs
- StateMachineSubscriptionManager.cs
- WeakEventManager.cs
- HandlerBase.cs
- BindingMemberInfo.cs
- AxDesigner.cs
- CompleteWizardStep.cs
- ProcessThread.cs
- BinaryNode.cs
- Geometry3D.cs
- LocationReferenceValue.cs
- UiaCoreApi.cs
- GetPageCompletedEventArgs.cs
- ControlBindingsCollection.cs
- ObjectSerializerFactory.cs
- TabControlAutomationPeer.cs
- FormDocumentDesigner.cs
- HMACSHA512.cs
- ObjectToModelValueConverter.cs
- _ProxyChain.cs
- ConfigsHelper.cs
- WebPartConnectionsDisconnectVerb.cs
- TcpStreams.cs
- DemultiplexingDispatchMessageFormatter.cs
- ByteRangeDownloader.cs
- XsltConvert.cs
- SecurityCriticalDataForSet.cs
- PropertyDescriptorComparer.cs
- ParameterEditorUserControl.cs
- BlurBitmapEffect.cs
- BitmapFrame.cs
- WebHttpSecurityElement.cs
- RowToParametersTransformer.cs
- BaseAddressElementCollection.cs
- WebBrowser.cs
- WindowsContainer.cs
- SoapProcessingBehavior.cs
- OutOfProcStateClientManager.cs
- AccessViolationException.cs
- ValidationSummary.cs
- UIElement3DAutomationPeer.cs
- TreeIterators.cs
- EventLogPermissionEntryCollection.cs
- CodeAccessSecurityEngine.cs
- FixedPageStructure.cs
- Point3DAnimation.cs
- Mappings.cs
- LabelDesigner.cs
- CmsInterop.cs
- ObjectDataSource.cs
- ViewManager.cs
- CollectionType.cs
- RawKeyboardInputReport.cs
- TrustManagerMoreInformation.cs
- ToolStripControlHost.cs
- ImageCodecInfoPrivate.cs
- UnsignedPublishLicense.cs
- TraversalRequest.cs
- LightweightEntityWrapper.cs
- DataGridTemplateColumn.cs
- DependencyObjectValidator.cs
- HostedHttpContext.cs
- CodeChecksumPragma.cs
- ListCommandEventArgs.cs
- LoginName.cs
- DelegateArgument.cs
- ResolveNameEventArgs.cs
- JoinGraph.cs
- XamlReader.cs
- ColumnMapProcessor.cs
- ProfileEventArgs.cs
- COM2IDispatchConverter.cs
- ZipIOCentralDirectoryBlock.cs
- WpfXamlLoader.cs
- StreamWithDictionary.cs
- SafeThreadHandle.cs
- CompilerCollection.cs
- ListBoxItem.cs
- DelayLoadType.cs
- CustomWebEventKey.cs
- MediaTimeline.cs
- WindowsAuthenticationEventArgs.cs
- SafeCryptoHandles.cs
- ConfigXmlReader.cs
- AppDomainAttributes.cs
- TextEndOfLine.cs
- WebEvents.cs
- WsrmTraceRecord.cs