Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / GuidConverter.cs / 1 / GuidConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.ComponentModel.Design.Serialization; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.Runtime.Remoting; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public class GuidConverter : TypeConverter { ///Provides a /// type converter to convert globally unique identifier objects to and from various /// other representations. ////// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } ///Gets a value indicating whether this /// converter can convert an object in the given source type to a globally unique identifier object /// using the context. ////// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if (destinationType == typeof(InstanceDescriptor)) { return true; } return base.CanConvertTo(context, destinationType); } ///Gets a value indicating whether this converter can /// convert an object to the given destination type using the context. ////// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Trim(); return new Guid(text); } return base.ConvertFrom(context, culture, value); } ///Converts /// the given object to a globally unique identifier object. ////// Converts the given object to another type. The most common types to convert /// are to and from a string object. The default implementation will make a call /// to ToString on the object if the object is valid and if the destination /// type is string. If this cannot convert to the desitnation type, this will /// throw a NotSupportedException. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(InstanceDescriptor) && value is Guid) { ConstructorInfo ctor = typeof(Guid).GetConstructor(new Type[] {typeof(string)}); if (ctor != null) { return new InstanceDescriptor(ctor, new object[] {value.ToString()}); } } return base.ConvertTo(context, culture, value, destinationType); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridViewTextBoxColumn.cs
- TrackBarRenderer.cs
- EntityProviderFactory.cs
- AutoResetEvent.cs
- ParallelActivityDesigner.cs
- NotifyParentPropertyAttribute.cs
- FontFamily.cs
- TextViewSelectionProcessor.cs
- AnimationClock.cs
- XhtmlBasicSelectionListAdapter.cs
- HttpListenerException.cs
- XmlIncludeAttribute.cs
- RangeValueProviderWrapper.cs
- CollectionEditVerbManager.cs
- CallSiteOps.cs
- DataGridCheckBoxColumn.cs
- SoapParser.cs
- InterleavedZipPartStream.cs
- DataSourceHelper.cs
- SessionState.cs
- MobileCategoryAttribute.cs
- TimestampInformation.cs
- ReadContentAsBinaryHelper.cs
- WebPartTransformerCollection.cs
- RelationshipConverter.cs
- DataServiceHostWrapper.cs
- TCPListener.cs
- TimelineGroup.cs
- AddInStore.cs
- ByeMessageApril2005.cs
- PropertyConverter.cs
- Brush.cs
- SubpageParagraph.cs
- DataListItemEventArgs.cs
- WindowsFormsHost.cs
- CryptoStream.cs
- ListenerSessionConnectionReader.cs
- ToolBarOverflowPanel.cs
- TransformedBitmap.cs
- WeakEventManager.cs
- CommandHelpers.cs
- GeometryDrawing.cs
- SqlDataSourceCommandEventArgs.cs
- TextClipboardData.cs
- regiisutil.cs
- XmlSecureResolver.cs
- GCHandleCookieTable.cs
- CodeGeneratorOptions.cs
- DrawingContext.cs
- UriParserTemplates.cs
- DirtyTextRange.cs
- Switch.cs
- OdbcConnectionOpen.cs
- ObjectAnimationBase.cs
- HttpBindingExtension.cs
- DataSourceControl.cs
- StorageSetMapping.cs
- DispatcherObject.cs
- CodeIdentifiers.cs
- BrowsableAttribute.cs
- GenericUI.cs
- DependencyPropertyConverter.cs
- ConnectionStringsExpressionEditor.cs
- XPathDescendantIterator.cs
- TreeViewDesigner.cs
- OrderedDictionary.cs
- RegexInterpreter.cs
- Message.cs
- XPathNodeList.cs
- remotingproxy.cs
- SubMenuStyleCollection.cs
- UrlRoutingModule.cs
- cache.cs
- WebSysDisplayNameAttribute.cs
- StreamGeometry.cs
- isolationinterop.cs
- TypeSource.cs
- WebBrowserNavigatingEventHandler.cs
- ProcessModelSection.cs
- CommonDialog.cs
- RectConverter.cs
- RangeValueProviderWrapper.cs
- FixedSOMFixedBlock.cs
- ProtectedConfigurationProviderCollection.cs
- GridViewItemAutomationPeer.cs
- StorageComplexTypeMapping.cs
- DataPagerCommandEventArgs.cs
- DataServiceRequestArgs.cs
- XNodeValidator.cs
- SelectedGridItemChangedEvent.cs
- ModuleElement.cs
- ApplicationActivator.cs
- ChannelSinkStacks.cs
- XPathNodePointer.cs
- ButtonDesigner.cs
- RuleConditionDialog.Designer.cs
- BinaryParser.cs
- RayMeshGeometry3DHitTestResult.cs
- AlphaSortedEnumConverter.cs
- GridItemPattern.cs