Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / TimeSpanConverter.cs / 1305376 / TimeSpanConverter.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; using System.Threading; ////// [HostProtection(SharedState = true)] public class TimeSpanConverter : TypeConverter { ///Provides a type converter to convert ////// 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 ///object using the /// specified 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(); try { return TimeSpan.Parse(text, culture); } catch (FormatException e) { throw new FormatException(SR.GetString(SR.ConvertInvalidPrimitive, (string)value, "TimeSpan"), e); } } return base.ConvertFrom(context, culture, value); } ///Converts the given object to a ////// 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 TimeSpan) { MethodInfo method = typeof(TimeSpan).GetMethod("Parse", new Type[] {typeof(string)}); if (method != null) { return new InstanceDescriptor(method, 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; using System.Threading; ////// [HostProtection(SharedState = true)] public class TimeSpanConverter : TypeConverter { ///Provides a type converter to convert ////// 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 ///object using the /// specified 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(); try { return TimeSpan.Parse(text, culture); } catch (FormatException e) { throw new FormatException(SR.GetString(SR.ConvertInvalidPrimitive, (string)value, "TimeSpan"), e); } } return base.ConvertFrom(context, culture, value); } ///Converts the given object to a ////// 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 TimeSpan) { MethodInfo method = typeof(TimeSpan).GetMethod("Parse", new Type[] {typeof(string)}); if (method != null) { return new InstanceDescriptor(method, 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
- DataBinding.cs
- InvalidCastException.cs
- WrappedOptions.cs
- DataListItem.cs
- DesignSurfaceManager.cs
- DataControlCommands.cs
- AsymmetricAlgorithm.cs
- ProfileBuildProvider.cs
- VSWCFServiceContractGenerator.cs
- LocatorPartList.cs
- SchemaImporter.cs
- CodeTypeParameter.cs
- DocumentStream.cs
- SqlReferenceCollection.cs
- StaticFileHandler.cs
- coordinatorscratchpad.cs
- Conditional.cs
- FontFamilyIdentifier.cs
- DecoderExceptionFallback.cs
- SweepDirectionValidation.cs
- HMACSHA512.cs
- HttpHeaderCollection.cs
- ObjectListItemCollection.cs
- LinearKeyFrames.cs
- DbMetaDataCollectionNames.cs
- ConfigurationStrings.cs
- XhtmlConformanceSection.cs
- SqlBuilder.cs
- SignedPkcs7.cs
- Message.cs
- StylusShape.cs
- BaseCodePageEncoding.cs
- ArrangedElement.cs
- Error.cs
- TypeSystem.cs
- BrowserCapabilitiesCompiler.cs
- Debug.cs
- RequestValidator.cs
- LayoutEvent.cs
- Model3DCollection.cs
- _WinHttpWebProxyDataBuilder.cs
- FieldAccessException.cs
- RenderingBiasValidation.cs
- EpmContentSerializer.cs
- UrlPropertyAttribute.cs
- Helpers.cs
- fixedPageContentExtractor.cs
- ProcessInputEventArgs.cs
- ObjectListTitleAttribute.cs
- DataRowComparer.cs
- ServicePointManager.cs
- CryptoStream.cs
- IndexerHelper.cs
- StickyNote.cs
- DelegateBodyWriter.cs
- ItemCollection.cs
- BuildProviderUtils.cs
- UmAlQuraCalendar.cs
- WpfXamlLoader.cs
- TextServicesProperty.cs
- PolicyVersion.cs
- ForeignKeyConstraint.cs
- FlowDocumentReaderAutomationPeer.cs
- HtmlControl.cs
- SqlDataSourceView.cs
- EDesignUtil.cs
- CellTreeNode.cs
- ProcessProtocolHandler.cs
- MenuTracker.cs
- StorageFunctionMapping.cs
- AutomationIdentifierGuids.cs
- JsonServiceDocumentSerializer.cs
- Transform3DGroup.cs
- x509utils.cs
- LinqDataSourceValidationException.cs
- ProtocolsConfiguration.cs
- UmAlQuraCalendar.cs
- UIAgentAsyncParams.cs
- DoubleAnimationUsingKeyFrames.cs
- XmlDomTextWriter.cs
- LineBreak.cs
- ChangeConflicts.cs
- ApplicationHost.cs
- ResXResourceSet.cs
- MergePropertyDescriptor.cs
- SqlGatherProducedAliases.cs
- CopyAction.cs
- _FtpDataStream.cs
- ActiveDesignSurfaceEvent.cs
- SystemShuttingDownException.cs
- Util.cs
- XpsResourcePolicy.cs
- HierarchicalDataSourceConverter.cs
- Schema.cs
- SvcMapFileLoader.cs
- DeclarativeCatalogPart.cs
- RemotingException.cs
- InvalidFilterCriteriaException.cs
- HttpRuntimeSection.cs
- RegexGroupCollection.cs