Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / Monitoring / system / Diagnosticts / Design / CounterNameConverter.cs / 1 / CounterNameConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Diagnostics.Design { using System.Runtime.Serialization.Formatters; using System.Globalization; using System.Diagnostics; using System; using System.Windows.Forms.ComponentModel; using System.ComponentModel; using System.ComponentModel.Design; using System.Collections; internal class CounterNameConverter : TypeConverter { ////// /// public CounterNameConverter() { } public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Trim(); return text; } return base.ConvertFrom(context, culture, value); } ////// Initializes a new instance of the 'CounterNameConverter' class for the given type. /// ////// /// /// public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { PerformanceCounter counter = (context == null) ? null : context.Instance as PerformanceCounter; string machineName = "."; string categoryName = String.Empty; if (counter != null) { machineName = counter.MachineName; categoryName = counter.CategoryName; } try { PerformanceCounterCategory cat = new PerformanceCounterCategory(categoryName, machineName); string[] instanceNames = cat.GetInstanceNames(); PerformanceCounter[] counters = null; if (instanceNames.Length == 0) counters = cat.GetCounters(); else counters = cat.GetCounters(instanceNames[0]); string[] retVal = new string[counters.Length]; for (int i = 0; i < counters.Length; i++) { retVal[i] = counters[i].CounterName; } Array.Sort(retVal, Comparer.Default); return new StandardValuesCollection(retVal); } catch (Exception) { ; // do nothing } return null; } ///Gets a collection of standard values for the data type this validator is /// designed for. ////// /// /// public override bool GetStandardValuesSupported(ITypeDescriptorContext context) { return true; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Gets a value indicating /// whether this object /// supports a standard set of values that can be picked /// from a list using the specified context. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RawStylusSystemGestureInputReport.cs
- TemplatedWizardStep.cs
- StorageMappingItemLoader.cs
- WorkflowControlClient.cs
- CacheAxisQuery.cs
- CompositionTarget.cs
- DesignTimeTemplateParser.cs
- KoreanLunisolarCalendar.cs
- HttpContext.cs
- TransformerTypeCollection.cs
- TypeSystem.cs
- StateManager.cs
- BufferCache.cs
- RegistryPermission.cs
- XmlJsonReader.cs
- WindowAutomationPeer.cs
- XmlElementList.cs
- updatecommandorderer.cs
- ViewBox.cs
- QueryContinueDragEvent.cs
- OleCmdHelper.cs
- PropertyEmitterBase.cs
- ServiceObjectContainer.cs
- Message.cs
- ConstraintConverter.cs
- DataGridViewImageColumn.cs
- PathSegment.cs
- activationcontext.cs
- ErrorHandler.cs
- FixedTextContainer.cs
- Utils.cs
- Activator.cs
- Vector3DAnimationUsingKeyFrames.cs
- XmlSchemaAnnotated.cs
- Rect3DValueSerializer.cs
- RegistrationServices.cs
- WindowsContainer.cs
- WindowsRichEdit.cs
- FileLoadException.cs
- TimeSpan.cs
- BaseTypeViewSchema.cs
- ServiceContractAttribute.cs
- ObjectRef.cs
- ProcessStartInfo.cs
- BehaviorDragDropEventArgs.cs
- DataGridTextBoxColumn.cs
- TagPrefixAttribute.cs
- SettingsBase.cs
- XmlStringTable.cs
- ContextMenuStripGroup.cs
- CommentAction.cs
- SynchronizationContext.cs
- SelectedGridItemChangedEvent.cs
- PersistChildrenAttribute.cs
- AudioStateChangedEventArgs.cs
- SqlTypeConverter.cs
- RangeBaseAutomationPeer.cs
- NetCodeGroup.cs
- util.cs
- OptimizerPatterns.cs
- MimeTypeAttribute.cs
- DateRangeEvent.cs
- StylusPoint.cs
- PropertyTabAttribute.cs
- StringUtil.cs
- StretchValidation.cs
- Exceptions.cs
- SessionState.cs
- SoapEnumAttribute.cs
- WhitespaceRuleReader.cs
- ConsoleTraceListener.cs
- Assert.cs
- RedistVersionInfo.cs
- SmtpClient.cs
- PkcsUtils.cs
- DataGridSortCommandEventArgs.cs
- OrderedDictionary.cs
- OdbcReferenceCollection.cs
- ChangeNode.cs
- RoleManagerSection.cs
- SchemaLookupTable.cs
- UIServiceHelper.cs
- DmlSqlGenerator.cs
- WindowVisualStateTracker.cs
- Visual.cs
- UnconditionalPolicy.cs
- OdbcParameterCollection.cs
- ValidationSummary.cs
- StateMachineWorkflow.cs
- XamlBrushSerializer.cs
- RequestChannelBinder.cs
- FormsAuthenticationModule.cs
- PcmConverter.cs
- MetabaseServerConfig.cs
- RegexMatch.cs
- InputScopeConverter.cs
- SelectionWordBreaker.cs
- Process.cs
- Not.cs
- InstanceHandleConflictException.cs