Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / Monitoring / system / Diagnosticts / Design / CategoryValueConverter.cs / 1 / CategoryValueConverter.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 CategoryValueConverter : TypeConverter { ////// /// private StandardValuesCollection values; private string previousMachineName; ////// Provides a ///that specifies the /// possible values for the enumeration. /// /// /// public CategoryValueConverter() { } 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 'CategoryValueConverter' class for the given type. /// ////// /// /// public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context) { PerformanceCounter counter = (context == null) ? null : context.Instance as PerformanceCounter; string machineName = "."; if (counter != null) { machineName = counter.MachineName; } if (machineName == previousMachineName) return values; else previousMachineName = machineName; try { PerformanceCounter.CloseSharedResources(); PerformanceCounterCategory[] cats = PerformanceCounterCategory.GetCategories(machineName); string[] retVal = new string[cats.Length]; for (int i = 0; i < cats.Length; i++) { retVal[i] = cats[i].CategoryName; } Array.Sort(retVal, Comparer.Default); values = new StandardValuesCollection(retVal); } catch (Exception) { values = null; } return values; } ///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
- GridViewRowPresenterBase.cs
- PolyBezierSegmentFigureLogic.cs
- SafeNativeMethods.cs
- CachedTypeface.cs
- DataRecordObjectView.cs
- LinqDataSourceValidationException.cs
- ToolStripPanel.cs
- CombinedGeometry.cs
- DataPagerField.cs
- MemberHolder.cs
- TailPinnedEventArgs.cs
- XmlSchemaAttribute.cs
- InitializationEventAttribute.cs
- RoleService.cs
- EventInfo.cs
- HttpRuntime.cs
- TransportDefaults.cs
- SqlExpressionNullability.cs
- BatchServiceHost.cs
- RowBinding.cs
- StrongNameMembershipCondition.cs
- PropertyNames.cs
- SafeRightsManagementQueryHandle.cs
- AnnotationHelper.cs
- EmptyStringExpandableObjectConverter.cs
- ObjectCloneHelper.cs
- EntityDataSourceDesigner.cs
- RowCache.cs
- EventSourceCreationData.cs
- TreePrinter.cs
- ObfuscateAssemblyAttribute.cs
- FontStretch.cs
- BitmapEffectInputData.cs
- DataGridTableCollection.cs
- FontInfo.cs
- TranslateTransform3D.cs
- SecurityPermission.cs
- LinqToSqlWrapper.cs
- Win32.cs
- BigInt.cs
- NumericExpr.cs
- SqlConnectionFactory.cs
- SkewTransform.cs
- HttpStaticObjectsCollectionBase.cs
- GeneralTransform3D.cs
- CodeGeneratorAttribute.cs
- TextDecorationLocationValidation.cs
- FamilyMapCollection.cs
- Quaternion.cs
- _OSSOCK.cs
- XdrBuilder.cs
- DataMisalignedException.cs
- MsmqBindingMonitor.cs
- WindowsTokenRoleProvider.cs
- IndicShape.cs
- BamlBinaryWriter.cs
- MsmqChannelFactoryBase.cs
- EntityDataSourceDesignerHelper.cs
- ExceptionValidationRule.cs
- SynchronizedDispatch.cs
- FormatStringEditor.cs
- NativeMethods.cs
- OutputScopeManager.cs
- ObjectDataSourceFilteringEventArgs.cs
- DefaultClaimSet.cs
- CodeCatchClauseCollection.cs
- RbTree.cs
- PropertyGridView.cs
- TemplateBamlRecordReader.cs
- ScriptResourceHandler.cs
- OleDbParameterCollection.cs
- SynchronizedDispatch.cs
- NetDataContractSerializer.cs
- SessionPageStatePersister.cs
- RegistrySecurity.cs
- ProcessingInstructionAction.cs
- HMACSHA256.cs
- DataGridHeaderBorder.cs
- DeferrableContentConverter.cs
- HtmlCommandAdapter.cs
- PopOutPanel.cs
- SurrogateEncoder.cs
- ViewLoader.cs
- HtmlAnchor.cs
- FixedDocumentPaginator.cs
- DateTimeConstantAttribute.cs
- WebColorConverter.cs
- QueryNode.cs
- PageCodeDomTreeGenerator.cs
- SvcMapFileSerializer.cs
- StrokeIntersection.cs
- SqlDependencyUtils.cs
- SqlTriggerContext.cs
- ContentTypeSettingDispatchMessageFormatter.cs
- OptimisticConcurrencyException.cs
- FilterEventArgs.cs
- IncrementalHitTester.cs
- UnicastIPAddressInformationCollection.cs
- AssemblyCache.cs
- ColorContext.cs