Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- SimpleTypeResolver.cs
- GroupQuery.cs
- TdsParserHelperClasses.cs
- AsyncCompletedEventArgs.cs
- FilterElement.cs
- SqlXmlStorage.cs
- ServiceOperationParameter.cs
- EntityAdapter.cs
- MetabaseServerConfig.cs
- NCryptSafeHandles.cs
- BamlTreeUpdater.cs
- UniqueEventHelper.cs
- Menu.cs
- UrlMapping.cs
- CapiSafeHandles.cs
- InputMethod.cs
- EventSchemaTraceListener.cs
- SyntaxCheck.cs
- XamlDesignerSerializationManager.cs
- Label.cs
- FilteredDataSetHelper.cs
- ObjectDataSourceDisposingEventArgs.cs
- Point.cs
- DataGridHelper.cs
- DrawingImage.cs
- CqlBlock.cs
- DocumentGridContextMenu.cs
- HttpWebResponse.cs
- CustomAssemblyResolver.cs
- MonthChangedEventArgs.cs
- SHA1CryptoServiceProvider.cs
- StaticDataManager.cs
- DataGridViewButtonColumn.cs
- ProjectionCamera.cs
- Function.cs
- XmlQueryRuntime.cs
- ServiceXNameTypeConverter.cs
- SupportsEventValidationAttribute.cs
- Query.cs
- CodeSnippetExpression.cs
- ParameterModifier.cs
- InputManager.cs
- Rect3DValueSerializer.cs
- FixedPageStructure.cs
- ConfigurationPermission.cs
- SerialErrors.cs
- SequenceFullException.cs
- Annotation.cs
- SqlCharStream.cs
- UntrustedRecipientException.cs
- IndexedWhereQueryOperator.cs
- CodeDomSerializer.cs
- DataSourceSelectArguments.cs
- Latin1Encoding.cs
- XmlReader.cs
- SmiMetaDataProperty.cs
- WorkflowInstanceQuery.cs
- TypeLoadException.cs
- ColumnReorderedEventArgs.cs
- XPathDocument.cs
- InProcStateClientManager.cs
- SID.cs
- DSACryptoServiceProvider.cs
- ImmutableCollection.cs
- TypeCacheManager.cs
- BufferedStream.cs
- IWorkflowDebuggerService.cs
- BmpBitmapEncoder.cs
- NullEntityWrapper.cs
- OpenTypeLayoutCache.cs
- OleDbConnection.cs
- InterleavedZipPartStream.cs
- PersonalizationStateQuery.cs
- ErrorLog.cs
- FilterQuery.cs
- Message.cs
- XMLSchema.cs
- FormsAuthenticationEventArgs.cs
- WindowsComboBox.cs
- EventInfo.cs
- WorkflowView.cs
- ConnectionConsumerAttribute.cs
- ForEachAction.cs
- DataRecord.cs
- XhtmlConformanceSection.cs
- SchemaTypeEmitter.cs
- ProfileInfo.cs
- DiscardableAttribute.cs
- basemetadatamappingvisitor.cs
- BaseTreeIterator.cs
- IntSecurity.cs
- ISAPIWorkerRequest.cs
- QueryIntervalOp.cs
- EventListener.cs
- MediaContext.cs
- LocatorBase.cs
- SqlCaseSimplifier.cs
- TemplateColumn.cs
- GeometryConverter.cs
- TypeConverterHelper.cs