Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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); } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SectionRecord.cs
- CodeMemberEvent.cs
- HttpListenerRequestTraceRecord.cs
- MbpInfo.cs
- GridLength.cs
- WebPartExportVerb.cs
- SqlTypeConverter.cs
- SqlBulkCopyColumnMapping.cs
- XmlKeywords.cs
- PropertyEntry.cs
- LingerOption.cs
- UnsafeNativeMethods.cs
- Calendar.cs
- UrlMapping.cs
- C14NUtil.cs
- KeyPressEvent.cs
- XamlPointCollectionSerializer.cs
- TypeBuilderInstantiation.cs
- EndPoint.cs
- ToolStripItemClickedEventArgs.cs
- PackageDigitalSignatureManager.cs
- XmlKeywords.cs
- WebControlAdapter.cs
- KeyedHashAlgorithm.cs
- BridgeDataRecord.cs
- XsdDateTime.cs
- ItemPager.cs
- DataGridViewRowConverter.cs
- TextTreeUndoUnit.cs
- DataGridViewRowsRemovedEventArgs.cs
- Semaphore.cs
- XmlWriterTraceListener.cs
- RouteParser.cs
- EventRouteFactory.cs
- EventPrivateKey.cs
- PingReply.cs
- ReadOnlyObservableCollection.cs
- BoolExpression.cs
- MissingManifestResourceException.cs
- StatusBarItem.cs
- SerialStream.cs
- CodeMemberField.cs
- XdrBuilder.cs
- FocusTracker.cs
- StylusPlugInCollection.cs
- XmlRawWriter.cs
- SqlUserDefinedAggregateAttribute.cs
- CapiSafeHandles.cs
- GcSettings.cs
- ProcessManager.cs
- MultiDataTrigger.cs
- ButtonChrome.cs
- TileModeValidation.cs
- DrawToolTipEventArgs.cs
- ActiveDocumentEvent.cs
- HttpFormatExtensions.cs
- SystemIPGlobalStatistics.cs
- UrlMappingCollection.cs
- PagePropertiesChangingEventArgs.cs
- Size.cs
- BinaryNode.cs
- ListBoxItem.cs
- mediapermission.cs
- TextRangeEdit.cs
- DeobfuscatingStream.cs
- BackoffTimeoutHelper.cs
- ControlHelper.cs
- Control.cs
- SafeNativeMethods.cs
- TimelineClockCollection.cs
- TypeUtils.cs
- CodeGenerator.cs
- StringKeyFrameCollection.cs
- FileLogRecordHeader.cs
- _IPv4Address.cs
- EventHandlerList.cs
- Compensate.cs
- DrawingBrush.cs
- KeyValueSerializer.cs
- LinkedResource.cs
- ListView.cs
- EtwTrackingBehavior.cs
- FileUpload.cs
- ChannelManagerHelpers.cs
- EpmTargetTree.cs
- connectionpool.cs
- ListViewSortEventArgs.cs
- ContentElementAutomationPeer.cs
- FontFamily.cs
- VectorCollectionValueSerializer.cs
- ReturnEventArgs.cs
- Inline.cs
- MemoryRecordBuffer.cs
- BinaryObjectWriter.cs
- MenuRenderer.cs
- WindowHideOrCloseTracker.cs
- ImageSource.cs
- NotFiniteNumberException.cs
- CommandLineParser.cs
- TextEditorTables.cs