Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / GuidConverter.cs / 1305376 / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BufferedReadStream.cs
- DataGridPagerStyle.cs
- ComplexType.cs
- ListBoxItemAutomationPeer.cs
- ElementsClipboardData.cs
- CaseInsensitiveHashCodeProvider.cs
- MDIWindowDialog.cs
- LinqDataSourceView.cs
- SystemColorTracker.cs
- WaveHeader.cs
- PathFigure.cs
- PropertyNames.cs
- CodeIndexerExpression.cs
- CompilerLocalReference.cs
- TextEffect.cs
- IRCollection.cs
- UserNameSecurityTokenAuthenticator.cs
- GenerateScriptTypeAttribute.cs
- BooleanAnimationBase.cs
- DiscriminatorMap.cs
- RoutedUICommand.cs
- OpacityConverter.cs
- IntSecurity.cs
- LoginView.cs
- SystemIcmpV6Statistics.cs
- ToggleProviderWrapper.cs
- StateMachine.cs
- ContentDefinition.cs
- CompositeActivityMarkupSerializer.cs
- _RequestCacheProtocol.cs
- EncoderExceptionFallback.cs
- XmlWrappingReader.cs
- TrackingMemoryStreamFactory.cs
- ConfigsHelper.cs
- NamespaceEmitter.cs
- PenThreadPool.cs
- WindowsTokenRoleProvider.cs
- WsdlInspector.cs
- ReflectPropertyDescriptor.cs
- Button.cs
- ProgressBar.cs
- DrawingCollection.cs
- CheckBoxList.cs
- ResXBuildProvider.cs
- ValidationEventArgs.cs
- TiffBitmapDecoder.cs
- DoubleLinkList.cs
- TextTrailingCharacterEllipsis.cs
- CryptoStream.cs
- JsonUriDataContract.cs
- PeerTransportListenAddressConverter.cs
- QilTargetType.cs
- UidPropertyAttribute.cs
- XmlWriterDelegator.cs
- PerformanceCountersElement.cs
- PassportAuthenticationEventArgs.cs
- ComponentManagerBroker.cs
- InputManager.cs
- NameValuePermission.cs
- DocumentPaginator.cs
- EventHandlerList.cs
- ReadOnlyObservableCollection.cs
- WebPartRestoreVerb.cs
- VectorCollectionConverter.cs
- FacetDescription.cs
- ContractInstanceProvider.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- WmlCalendarAdapter.cs
- ChangeInterceptorAttribute.cs
- XmlStreamStore.cs
- InvalidateEvent.cs
- UnsafeNativeMethodsPenimc.cs
- UserThread.cs
- MultipleViewProviderWrapper.cs
- TemplateContentLoader.cs
- Matrix3D.cs
- ValidationPropertyAttribute.cs
- WindowsGraphicsCacheManager.cs
- ApplicationManager.cs
- ContactManager.cs
- ConnectionStringsExpressionBuilder.cs
- LookupBindingPropertiesAttribute.cs
- ParserStreamGeometryContext.cs
- ApplicationBuildProvider.cs
- ThreadSafeList.cs
- MappingModelBuildProvider.cs
- LayoutUtils.cs
- XmlTextReaderImplHelpers.cs
- xmlfixedPageInfo.cs
- CompilerState.cs
- CmsUtils.cs
- TextTreeText.cs
- EtwTrace.cs
- DataGridAddNewRow.cs
- DataGridGeneralPage.cs
- FileDialog.cs
- ToolboxDataAttribute.cs
- PackageDigitalSignature.cs
- ColumnClickEvent.cs
- ConfigXmlComment.cs