Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- WebRequestModuleElement.cs
- ThreadStaticAttribute.cs
- PageCache.cs
- WorkflowView.cs
- PageStatePersister.cs
- TypeUtils.cs
- CqlParserHelpers.cs
- RtfFormatStack.cs
- AccessibleObject.cs
- FlowDocumentReader.cs
- FormsAuthenticationCredentials.cs
- WhereQueryOperator.cs
- SqlTopReducer.cs
- ApplicationActivator.cs
- ProcessThread.cs
- GridItemCollection.cs
- FrameworkElementFactoryMarkupObject.cs
- querybuilder.cs
- EntityContainerEntitySet.cs
- HwndSource.cs
- OLEDB_Enum.cs
- SchemaTypeEmitter.cs
- TextRangeEditTables.cs
- RijndaelCryptoServiceProvider.cs
- LoginView.cs
- PartialCachingControl.cs
- CultureInfo.cs
- WhileDesigner.xaml.cs
- CultureTable.cs
- TreeNodeCollection.cs
- HttpInputStream.cs
- CircleEase.cs
- TypeCodeDomSerializer.cs
- ObjectStateManager.cs
- Query.cs
- CompilerScopeManager.cs
- PerformanceCountersElement.cs
- ValidationSummary.cs
- CreateParams.cs
- MetadataPropertyCollection.cs
- ReadOnlyCollection.cs
- CollectionEditorDialog.cs
- MD5CryptoServiceProvider.cs
- RegexCapture.cs
- WorkflowTimerService.cs
- BinaryUtilClasses.cs
- WorkflowCompensationBehavior.cs
- ImagingCache.cs
- SmiContext.cs
- OutOfProcStateClientManager.cs
- RotateTransform3D.cs
- Expander.cs
- BindUriHelper.cs
- XhtmlBasicValidationSummaryAdapter.cs
- XmlTextEncoder.cs
- CustomWebEventKey.cs
- SkewTransform.cs
- ContentDisposition.cs
- SpecularMaterial.cs
- VisualTreeHelper.cs
- LayoutEditorPart.cs
- VirtualPath.cs
- QilVisitor.cs
- OrderedDictionary.cs
- Guid.cs
- ChildrenQuery.cs
- PolicyManager.cs
- CommonDialog.cs
- SmiSettersStream.cs
- MatrixStack.cs
- SqlProviderServices.cs
- SrgsSubset.cs
- ColumnWidthChangedEvent.cs
- DefaultValueTypeConverter.cs
- FieldAccessException.cs
- DataBoundControlAdapter.cs
- ImmutableCollection.cs
- BinaryNode.cs
- Cursors.cs
- MetadataReference.cs
- AspCompat.cs
- ProfileSection.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- CacheAxisQuery.cs
- CompModSwitches.cs
- XmlDataProvider.cs
- OneOf.cs
- DataGridViewCheckBoxCell.cs
- ResourcePermissionBaseEntry.cs
- CellRelation.cs
- ListViewDeleteEventArgs.cs
- SimpleRecyclingCache.cs
- ReadOnlyCollection.cs
- RuntimeHandles.cs
- WorkflowQueue.cs
- COM2TypeInfoProcessor.cs
- DecoderFallbackWithFailureFlag.cs
- Camera.cs
- TiffBitmapDecoder.cs
- PageThemeBuildProvider.cs