Code:
/ DotNET / DotNET / 8.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
- PrivilegeNotHeldException.cs
- TdsParser.cs
- FlowPosition.cs
- CqlParser.cs
- HwndAppCommandInputProvider.cs
- AssemblyBuilder.cs
- CapabilitiesPattern.cs
- GenericsInstances.cs
- cookiecontainer.cs
- SafeFileMappingHandle.cs
- DebugControllerThread.cs
- TdsParserSessionPool.cs
- ReadWriteObjectLock.cs
- DataSpaceManager.cs
- CompositeCollectionView.cs
- HGlobalSafeHandle.cs
- ColorAnimationUsingKeyFrames.cs
- AutoSizeToolBoxItem.cs
- MessageQueueInstaller.cs
- InfiniteIntConverter.cs
- ProgressiveCrcCalculatingStream.cs
- DeviceContext.cs
- MenuTracker.cs
- Timer.cs
- CharEntityEncoderFallback.cs
- WmlObjectListAdapter.cs
- Polyline.cs
- CompilationRelaxations.cs
- CorePropertiesFilter.cs
- PropertyChange.cs
- HTMLTagNameToTypeMapper.cs
- FormViewUpdateEventArgs.cs
- storepermissionattribute.cs
- ListItemConverter.cs
- ServiceDebugElement.cs
- SplineQuaternionKeyFrame.cs
- FormClosingEvent.cs
- ConnectionConsumerAttribute.cs
- Expander.cs
- RectangleConverter.cs
- TextDecorations.cs
- SchemaNames.cs
- CodeCatchClauseCollection.cs
- versioninfo.cs
- SHA1Managed.cs
- CalendarDay.cs
- DocumentViewerBase.cs
- MapPathBasedVirtualPathProvider.cs
- TableRowGroup.cs
- TargetInvocationException.cs
- HTTP_SERVICE_CONFIG_URLACL_KEY.cs
- OperatingSystem.cs
- HtmlInputImage.cs
- BaseContextMenu.cs
- COM2IDispatchConverter.cs
- PreProcessInputEventArgs.cs
- Sentence.cs
- WebPartCloseVerb.cs
- KernelTypeValidation.cs
- ConfigurationManagerInternalFactory.cs
- FloaterBaseParagraph.cs
- CryptoConfig.cs
- KnownAssemblyEntry.cs
- SourceElementsCollection.cs
- Win32SafeHandles.cs
- IndexExpression.cs
- COM2PictureConverter.cs
- ViewCellSlot.cs
- PhonemeEventArgs.cs
- SqlProviderManifest.cs
- HwndSource.cs
- Util.cs
- DecimalConstantAttribute.cs
- BasePropertyDescriptor.cs
- EntityStoreSchemaFilterEntry.cs
- DocumentOrderQuery.cs
- ImageCodecInfoPrivate.cs
- HttpStreamXmlDictionaryReader.cs
- ErrorLog.cs
- LastQueryOperator.cs
- StateManagedCollection.cs
- ConditionValidator.cs
- LayoutInformation.cs
- LayoutEngine.cs
- SamlAudienceRestrictionCondition.cs
- FlagPanel.cs
- ObjectDataSourceStatusEventArgs.cs
- Camera.cs
- NavigationWindow.cs
- FixedPosition.cs
- ExceptionHelpers.cs
- elementinformation.cs
- FontEmbeddingManager.cs
- WebBrowsableAttribute.cs
- UInt64Converter.cs
- storepermission.cs
- FacetValues.cs
- GcHandle.cs
- LogAppendAsyncResult.cs
- ApplicationManager.cs