Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / CompMod / System / ComponentModel / TimeSpanConverter.cs / 1 / 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); } 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); } 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
- AdapterUtil.cs
- RectValueSerializer.cs
- StaticTextPointer.cs
- BitmapEffectGroup.cs
- SHA1CryptoServiceProvider.cs
- EntityDataSourceDataSelection.cs
- PersonalizationProviderCollection.cs
- GeneratedContractType.cs
- DataTemplate.cs
- WebPartVerbsEventArgs.cs
- QilValidationVisitor.cs
- QilUnary.cs
- MimeBasePart.cs
- ComplexObject.cs
- FileSystemInfo.cs
- TextSelection.cs
- ValidationSettings.cs
- TargetParameterCountException.cs
- MouseActionConverter.cs
- BaseProcessor.cs
- ActiveXSite.cs
- Fx.cs
- PeerNameRegistration.cs
- DesignerAutoFormatStyle.cs
- PenContexts.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- OdbcDataAdapter.cs
- FullTextBreakpoint.cs
- DatatypeImplementation.cs
- RegexReplacement.cs
- EventTrigger.cs
- JoinGraph.cs
- HotSpotCollection.cs
- LicenseManager.cs
- XsdDuration.cs
- WebColorConverter.cs
- PrefixQName.cs
- Line.cs
- WindowsTokenRoleProvider.cs
- TokenBasedSetEnumerator.cs
- TextCompositionManager.cs
- XmlTextWriter.cs
- URLMembershipCondition.cs
- KoreanCalendar.cs
- ItemList.cs
- SqlRecordBuffer.cs
- RegisterResponseInfo.cs
- DataObjectFieldAttribute.cs
- SecurityUtils.cs
- DynamicRendererThreadManager.cs
- AliasExpr.cs
- WindowsClaimSet.cs
- IgnoreDeviceFilterElement.cs
- OledbConnectionStringbuilder.cs
- GeometryValueSerializer.cs
- assemblycache.cs
- GlobalId.cs
- XmlUtil.cs
- DataGridViewAdvancedBorderStyle.cs
- DiscoveryReferences.cs
- EncodingConverter.cs
- Int16Animation.cs
- PageStatePersister.cs
- ArraySegment.cs
- CodeIterationStatement.cs
- CompilationUnit.cs
- ThreadInterruptedException.cs
- HttpProcessUtility.cs
- SchemaCompiler.cs
- SmiEventSink.cs
- SortedList.cs
- ListViewGroupConverter.cs
- WithParamAction.cs
- SqlLiftIndependentRowExpressions.cs
- ViewEvent.cs
- ManipulationStartingEventArgs.cs
- LinkArea.cs
- ProcessModelSection.cs
- XmlSerializationWriter.cs
- SerializableAttribute.cs
- ComponentResourceKey.cs
- LateBoundChannelParameterCollection.cs
- ItemContainerGenerator.cs
- PersonalizationDictionary.cs
- AdapterDictionary.cs
- WebUtil.cs
- PropertyStore.cs
- formatter.cs
- oledbmetadatacolumnnames.cs
- Privilege.cs
- HtmlGenericControl.cs
- BevelBitmapEffect.cs
- Vector3dCollection.cs
- IntSecurity.cs
- TcpProcessProtocolHandler.cs
- TransformedBitmap.cs
- CheckBoxStandardAdapter.cs
- TypeElementCollection.cs
- DefaultHttpHandler.cs
- FontUnit.cs