Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / Monitoring / system / Diagnosticts / Design / InstanceNameConverter.cs / 1 / InstanceNameConverter.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 InstanceNameConverter : TypeConverter { ////// /// public InstanceNameConverter() { } 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 'InstanceNameConverter' 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[] retVal =cat.GetInstanceNames(); 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
- VisualBasicImportReference.cs
- FileDetails.cs
- FilterElement.cs
- MLangCodePageEncoding.cs
- MetadataArtifactLoaderComposite.cs
- SizeAnimationClockResource.cs
- Compress.cs
- ThicknessConverter.cs
- NavigatorInvalidBodyAccessException.cs
- HeaderElement.cs
- XslTransform.cs
- FigureParaClient.cs
- TextWriter.cs
- RepeaterItemCollection.cs
- XmlTextAttribute.cs
- CompressEmulationStream.cs
- CatalogPartChrome.cs
- FileVersionInfo.cs
- ExpressionBuilder.cs
- FunctionImportElement.cs
- CuspData.cs
- Char.cs
- ChildrenQuery.cs
- ActiveXHost.cs
- documentsequencetextview.cs
- PolicyException.cs
- AttributedMetaModel.cs
- CodeAttachEventStatement.cs
- WpfPayload.cs
- RuntimeWrappedException.cs
- _SslState.cs
- SmiEventSink.cs
- CompModSwitches.cs
- Environment.cs
- HorizontalAlignConverter.cs
- XXXOnTypeBuilderInstantiation.cs
- CacheEntry.cs
- Byte.cs
- WindowsStreamSecurityElement.cs
- CompatibleIComparer.cs
- XsltArgumentList.cs
- SerializerWriterEventHandlers.cs
- DynamicRouteExpression.cs
- Positioning.cs
- CollectionViewSource.cs
- UInt16.cs
- PointAnimationBase.cs
- ManifestResourceInfo.cs
- DataGridViewColumnTypeEditor.cs
- TextModifierScope.cs
- Configuration.cs
- SqlUnionizer.cs
- BreakRecordTable.cs
- QualifiedCellIdBoolean.cs
- BamlLocalizableResource.cs
- ObservableDictionary.cs
- AdRotator.cs
- XPathNodePointer.cs
- LinearGradientBrush.cs
- Evidence.cs
- ComPlusInstanceProvider.cs
- ISFTagAndGuidCache.cs
- SemaphoreSecurity.cs
- UserControlFileEditor.cs
- RIPEMD160Managed.cs
- TypedLocationWrapper.cs
- EventBookmark.cs
- VerificationAttribute.cs
- ExpressionCopier.cs
- JumpPath.cs
- EventLogEntryCollection.cs
- WebRequestModuleElementCollection.cs
- KnownColorTable.cs
- NameValueConfigurationElement.cs
- NotifyCollectionChangedEventArgs.cs
- UserNameSecurityTokenAuthenticator.cs
- CryptoProvider.cs
- MethodBuilder.cs
- BamlBinaryReader.cs
- FunctionDetailsReader.cs
- TreeBuilder.cs
- DataGridViewRowPrePaintEventArgs.cs
- Viewport3DVisual.cs
- TransportChannelListener.cs
- ImagingCache.cs
- LineServices.cs
- XmlDownloadManager.cs
- ChannelListenerBase.cs
- EventSource.cs
- RestHandlerFactory.cs
- ContentPropertyAttribute.cs
- TextTrailingCharacterEllipsis.cs
- ProcessHostConfigUtils.cs
- OdbcConnectionHandle.cs
- XmlDataImplementation.cs
- AttachedPropertyBrowsableAttribute.cs
- NativeMethodsCLR.cs
- TextFormatter.cs
- Html32TextWriter.cs
- WebPartEditVerb.cs