Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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
- ConnectionsZone.cs
- InputManager.cs
- ApplicationActivator.cs
- CodeNamespaceCollection.cs
- XmlWhitespace.cs
- TextElementAutomationPeer.cs
- ExpressionBuilderCollection.cs
- ExecutionContext.cs
- BindingValueChangedEventArgs.cs
- RepeaterDesigner.cs
- Vector3DCollectionConverter.cs
- ColumnWidthChangedEvent.cs
- TraceContext.cs
- DataChangedEventManager.cs
- LinearGradientBrush.cs
- IsolatedStorageFilePermission.cs
- NumberSubstitution.cs
- TimeBoundedCache.cs
- WhereQueryOperator.cs
- TrackingRecordPreFilter.cs
- TypedTableBase.cs
- OrderedDictionary.cs
- Attribute.cs
- ProfileEventArgs.cs
- XmlCodeExporter.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- EntityDesignPluralizationHandler.cs
- RequestCachePolicy.cs
- ShaperBuffers.cs
- Hyperlink.cs
- QuaternionAnimationBase.cs
- UriTemplateTable.cs
- DiscoveryClientProtocol.cs
- FormatStringEditor.cs
- X509Certificate.cs
- SourceLineInfo.cs
- PriorityChain.cs
- XmlILTrace.cs
- UpdateException.cs
- GroupStyle.cs
- Int64Converter.cs
- RegexBoyerMoore.cs
- TaskHelper.cs
- AsymmetricAlgorithm.cs
- FilteredXmlReader.cs
- UseManagedPresentationBindingElementImporter.cs
- SqlInternalConnectionSmi.cs
- BitmapEffectDrawingContextWalker.cs
- DataStorage.cs
- MatrixTransform.cs
- AssemblyBuilderData.cs
- SymbolResolver.cs
- FileBasedResourceGroveler.cs
- GlobalizationAssembly.cs
- AutoResizedEvent.cs
- FrameworkElement.cs
- _Rfc2616CacheValidators.cs
- XmlDocument.cs
- DataControlReferenceCollection.cs
- FileDialogCustomPlaces.cs
- SQLByteStorage.cs
- GenericPrincipal.cs
- Executor.cs
- LeafCellTreeNode.cs
- XmlNodeList.cs
- RequestCachePolicyConverter.cs
- ValidatedControlConverter.cs
- SynchronizingStream.cs
- ShapeTypeface.cs
- AppDomainAttributes.cs
- PairComparer.cs
- ListViewGroupItemCollection.cs
- AuthenticationSection.cs
- AggregateNode.cs
- XmlDomTextWriter.cs
- UriExt.cs
- TextBox.cs
- XmlILConstructAnalyzer.cs
- SubMenuStyle.cs
- SystemIPAddressInformation.cs
- SafeHandles.cs
- MenuItemBinding.cs
- BasicViewGenerator.cs
- SmtpSection.cs
- HttpConfigurationContext.cs
- DbConnectionStringBuilder.cs
- HMACSHA1.cs
- AssemblyCollection.cs
- Color.cs
- _ContextAwareResult.cs
- Page.cs
- MessageDecoder.cs
- COM2Enum.cs
- XmlSignatureManifest.cs
- SecurityTokenValidationException.cs
- Events.cs
- PrePrepareMethodAttribute.cs
- BindingsSection.cs
- QueueProcessor.cs
- ComPersistableTypeElementCollection.cs