Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / Monitoring / system / Diagnosticts / CounterCreationDataCollection.cs / 1 / CounterCreationDataCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System; using System.ComponentModel; using System.Collections; ////// [Serializable()] public class CounterCreationDataCollection : CollectionBase { ///[To be supplied.] ////// public CounterCreationDataCollection() { } ///[To be supplied.] ////// public CounterCreationDataCollection(CounterCreationDataCollection value) { this.AddRange(value); } ///[To be supplied.] ////// public CounterCreationDataCollection(CounterCreationData[] value) { this.AddRange(value); } ///[To be supplied.] ////// public CounterCreationData this[int index] { get { return ((CounterCreationData)(List[index])); } set { List[index] = value; } } ///[To be supplied.] ////// public int Add(CounterCreationData value) { return List.Add(value); } ///[To be supplied.] ////// public void AddRange(CounterCreationData[] 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(CounterCreationDataCollection 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 bool Contains(CounterCreationData value) { return List.Contains(value); } ///[To be supplied.] ////// public void CopyTo(CounterCreationData[] array, int index) { List.CopyTo(array, index); } ///[To be supplied.] ////// public int IndexOf(CounterCreationData value) { return List.IndexOf(value); } ///[To be supplied.] ////// public void Insert(int index, CounterCreationData value) { List.Insert(index, value); } ///[To be supplied.] ////// public virtual void Remove(CounterCreationData value) { List.Remove(value); } protected override void OnValidate(object value) { if (value == null) throw new ArgumentNullException("value"); CounterCreationData dataToAdd = value as CounterCreationData; if (dataToAdd == null) throw new ArgumentException(SR.GetString(SR.MustAddCounterCreationData)); } } }[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SharedDp.cs
- EventEntry.cs
- XmlSerializationWriter.cs
- InstanceData.cs
- ExpressionWriter.cs
- ProfileInfo.cs
- PersonalizablePropertyEntry.cs
- GlobalizationAssembly.cs
- StrokeNodeOperations2.cs
- Span.cs
- FixedSOMTextRun.cs
- ComboBoxItem.cs
- SystemParameters.cs
- ThrowHelper.cs
- wgx_sdk_version.cs
- SourceFileInfo.cs
- MouseCaptureWithinProperty.cs
- InvalidFilterCriteriaException.cs
- RenderingBiasValidation.cs
- EventLog.cs
- ExpressionCopier.cs
- CommonXSendMessage.cs
- CodeCommentStatementCollection.cs
- VirtualPathProvider.cs
- MemoryFailPoint.cs
- ErrorStyle.cs
- DocumentReferenceCollection.cs
- QuadraticBezierSegment.cs
- COM2PictureConverter.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- X509CertificateInitiatorClientCredential.cs
- FilterQuery.cs
- BuildProviderUtils.cs
- DebugController.cs
- LongValidatorAttribute.cs
- OleAutBinder.cs
- DtdParser.cs
- TransformConverter.cs
- HtmlHistory.cs
- PropertyIDSet.cs
- GenericIdentity.cs
- SingleStorage.cs
- TransactionException.cs
- ErrorHandler.cs
- WebPartConnection.cs
- HtmlButton.cs
- OdbcCommandBuilder.cs
- Boolean.cs
- DoubleAnimation.cs
- ContentHostHelper.cs
- StyleXamlTreeBuilder.cs
- Matrix.cs
- BaseParaClient.cs
- MsmqIntegrationMessagePool.cs
- CodeParameterDeclarationExpression.cs
- Socket.cs
- CodeGenerationManager.cs
- TypographyProperties.cs
- DataGridDetailsPresenterAutomationPeer.cs
- BindingCollectionElement.cs
- PrimaryKeyTypeConverter.cs
- Encoding.cs
- PathParser.cs
- CodeDirectiveCollection.cs
- TemplatePartAttribute.cs
- TCPClient.cs
- ModelMemberCollection.cs
- NullableLongMinMaxAggregationOperator.cs
- QilChoice.cs
- SoapReflectionImporter.cs
- CalloutQueueItem.cs
- BrowserPolicyValidator.cs
- FactoryRecord.cs
- XmlText.cs
- LayoutManager.cs
- Stream.cs
- __Error.cs
- CodeIdentifiers.cs
- DbConnectionPoolGroupProviderInfo.cs
- TextSegment.cs
- WorkflowItemPresenter.cs
- XmlDocumentSerializer.cs
- SizeFConverter.cs
- OrthographicCamera.cs
- EventEntry.cs
- InheritanceService.cs
- SvcMapFileSerializer.cs
- HyperlinkAutomationPeer.cs
- TypeSystemProvider.cs
- TimeStampChecker.cs
- odbcmetadatafactory.cs
- ProviderBase.cs
- COM2ComponentEditor.cs
- NumberEdit.cs
- AdPostCacheSubstitution.cs
- ActiveXSite.cs
- SecurityTokenTypes.cs
- PasswordTextNavigator.cs
- CacheMode.cs
- HasCopySemanticsAttribute.cs