Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Monitoring / system / Diagnosticts / InstanceDataCollectionCollection.cs / 1305376 / InstanceDataCollectionCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System.Diagnostics; using System; using System.Collections; using System.Globalization; ////// The collection returned from the public class InstanceDataCollectionCollection : DictionaryBase { [Obsolete("This constructor has been deprecated. Please use System.Diagnostics.PerformanceCounterCategory.ReadCategory() to get an instance of this collection instead. http://go.microsoft.com/fwlink/?linkid=14202")] public InstanceDataCollectionCollection() : base() {} ///method. /// that contains all the counter and instance data. /// The collection contains an InstanceDataCollection object for each counter. Each InstanceDataCollection /// object contains the performance data for all counters for that instance. In other words the data is /// indexed by counter name and then by instance name. /// /// public InstanceDataCollection this[string counterName] { get { if (counterName == null) throw new ArgumentNullException("counterName"); object objectName = counterName.ToLower(CultureInfo.InvariantCulture); return (InstanceDataCollection) Dictionary[objectName]; } } ///[To be supplied.] ////// public ICollection Keys { get { return Dictionary.Keys; } } ///[To be supplied.] ////// public ICollection Values { get { return Dictionary.Values; } } internal void Add(string counterName, InstanceDataCollection value) { object objectName = counterName.ToLower(CultureInfo.InvariantCulture); Dictionary.Add(objectName, value); } ///[To be supplied.] ////// public bool Contains(string counterName) { if (counterName == null) throw new ArgumentNullException("counterName"); object objectName = counterName.ToLower(CultureInfo.InvariantCulture); return Dictionary.Contains(objectName); } ///[To be supplied.] ////// public void CopyTo(InstanceDataCollection[] counters, int index) { Dictionary.Values.CopyTo((Array)counters, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics { using System.Diagnostics; using System; using System.Collections; using System.Globalization; ////// The collection returned from the public class InstanceDataCollectionCollection : DictionaryBase { [Obsolete("This constructor has been deprecated. Please use System.Diagnostics.PerformanceCounterCategory.ReadCategory() to get an instance of this collection instead. http://go.microsoft.com/fwlink/?linkid=14202")] public InstanceDataCollectionCollection() : base() {} ///method. /// that contains all the counter and instance data. /// The collection contains an InstanceDataCollection object for each counter. Each InstanceDataCollection /// object contains the performance data for all counters for that instance. In other words the data is /// indexed by counter name and then by instance name. /// /// public InstanceDataCollection this[string counterName] { get { if (counterName == null) throw new ArgumentNullException("counterName"); object objectName = counterName.ToLower(CultureInfo.InvariantCulture); return (InstanceDataCollection) Dictionary[objectName]; } } ///[To be supplied.] ////// public ICollection Keys { get { return Dictionary.Keys; } } ///[To be supplied.] ////// public ICollection Values { get { return Dictionary.Values; } } internal void Add(string counterName, InstanceDataCollection value) { object objectName = counterName.ToLower(CultureInfo.InvariantCulture); Dictionary.Add(objectName, value); } ///[To be supplied.] ////// public bool Contains(string counterName) { if (counterName == null) throw new ArgumentNullException("counterName"); object objectName = counterName.ToLower(CultureInfo.InvariantCulture); return Dictionary.Contains(objectName); } ///[To be supplied.] ////// public void CopyTo(InstanceDataCollection[] counters, int index) { Dictionary.Values.CopyTo((Array)counters, index); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HttpWrapper.cs
- ValidationErrorEventArgs.cs
- SinglePageViewer.cs
- ByteKeyFrameCollection.cs
- Pipe.cs
- StringUtil.cs
- IndentedWriter.cs
- LambdaCompiler.Unary.cs
- DataGridItem.cs
- StylusOverProperty.cs
- ClientBuildManagerCallback.cs
- TerminateWorkflow.cs
- ProcessHostMapPath.cs
- Stack.cs
- SequenceDesigner.cs
- DataGridSortCommandEventArgs.cs
- ServicePointManager.cs
- DotExpr.cs
- StyleSelector.cs
- Types.cs
- assemblycache.cs
- RealizationDrawingContextWalker.cs
- FontInfo.cs
- PtsHost.cs
- TypeInfo.cs
- CommonObjectSecurity.cs
- TextViewSelectionProcessor.cs
- backend.cs
- BindMarkupExtensionSerializer.cs
- PiiTraceSource.cs
- ItemContainerGenerator.cs
- InputLanguage.cs
- AttributeExtensions.cs
- CodeRegionDirective.cs
- HashSetDebugView.cs
- RemotingException.cs
- NameSpaceEvent.cs
- HyperLink.cs
- SettingsPropertyIsReadOnlyException.cs
- DateTimePicker.cs
- ThemeInfoAttribute.cs
- DefaultIfEmptyQueryOperator.cs
- FixedPageStructure.cs
- SamlAction.cs
- MULTI_QI.cs
- WebPageTraceListener.cs
- XmlQueryContext.cs
- DocComment.cs
- GACIdentityPermission.cs
- StateMachineSubscription.cs
- RootBrowserWindow.cs
- PartitionedStreamMerger.cs
- Function.cs
- ObjectViewFactory.cs
- TemplateControlBuildProvider.cs
- WindowsListViewSubItem.cs
- ArglessEventHandlerProxy.cs
- ListBindingHelper.cs
- EntityDataSourceDesignerHelper.cs
- BoundField.cs
- HandleCollector.cs
- ProcessProtocolHandler.cs
- SignatureConfirmationElement.cs
- Binding.cs
- ServicesExceptionNotHandledEventArgs.cs
- CharacterString.cs
- PointConverter.cs
- SimpleWorkerRequest.cs
- EdmScalarPropertyAttribute.cs
- SmtpLoginAuthenticationModule.cs
- StringDictionaryCodeDomSerializer.cs
- COM2EnumConverter.cs
- TypeSystem.cs
- DataColumn.cs
- WorkflowRuntimeServiceElement.cs
- HashUtility.cs
- WebConfigurationManager.cs
- ExpressionBinding.cs
- DescendentsWalkerBase.cs
- AbstractExpressions.cs
- DesignerActionPanel.cs
- BufferModeSettings.cs
- WindowsTooltip.cs
- CorePropertiesFilter.cs
- HtmlForm.cs
- SQLStringStorage.cs
- ExpressionBindingCollection.cs
- QueryCacheKey.cs
- RtfControlWordInfo.cs
- SourceInterpreter.cs
- TreeViewItemAutomationPeer.cs
- CreateSequence.cs
- ListViewCancelEventArgs.cs
- CodeCommentStatementCollection.cs
- uribuilder.cs
- _ConnectOverlappedAsyncResult.cs
- ArgumentException.cs
- MULTI_QI.cs
- DiagnosticsConfiguration.cs
- FilterException.cs