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
- PaintEvent.cs
- CdpEqualityComparer.cs
- NamespaceList.cs
- IsolatedStorageFilePermission.cs
- Rule.cs
- ServicesExceptionNotHandledEventArgs.cs
- CompModSwitches.cs
- IgnorePropertiesAttribute.cs
- GestureRecognizer.cs
- XPathSelectionIterator.cs
- CompleteWizardStep.cs
- UserValidatedEventArgs.cs
- XmlEncodedRawTextWriter.cs
- ObjectQueryProvider.cs
- SrgsItemList.cs
- versioninfo.cs
- CodeGotoStatement.cs
- StreamUpdate.cs
- Registry.cs
- BezierSegment.cs
- OLEDB_Enum.cs
- X509IssuerSerialKeyIdentifierClause.cs
- ToolStripPanelRow.cs
- TreeNodeStyleCollection.cs
- AnimationClockResource.cs
- EDesignUtil.cs
- DeobfuscatingStream.cs
- Set.cs
- StaticDataManager.cs
- returneventsaver.cs
- ConfigXmlComment.cs
- DataServiceHostFactory.cs
- WsatConfiguration.cs
- ProxyWebPartManager.cs
- OdbcCommandBuilder.cs
- ToolStripPanelRenderEventArgs.cs
- PostBackOptions.cs
- ScriptManagerProxy.cs
- DBParameter.cs
- VBCodeProvider.cs
- BitmapEffectRenderDataResource.cs
- SwitchAttribute.cs
- Label.cs
- StrokeNode.cs
- RegionData.cs
- Publisher.cs
- ReadOnlyObservableCollection.cs
- FrameSecurityDescriptor.cs
- BamlRecordWriter.cs
- Adorner.cs
- LinqTreeNodeEvaluator.cs
- HttpCacheVaryByContentEncodings.cs
- TextWriter.cs
- XmlSerializationGeneratedCode.cs
- ComponentRenameEvent.cs
- DataGridBoolColumn.cs
- SrgsElement.cs
- ErrorHandler.cs
- AdRotatorDesigner.cs
- dsa.cs
- DataGridPageChangedEventArgs.cs
- TextElement.cs
- SnapshotChangeTrackingStrategy.cs
- EditorBrowsableAttribute.cs
- AttachedPropertyInfo.cs
- Interlocked.cs
- TouchDevice.cs
- ImportContext.cs
- Floater.cs
- QilReference.cs
- LicenseContext.cs
- Assert.cs
- WebPartMinimizeVerb.cs
- DataTrigger.cs
- WebEncodingValidatorAttribute.cs
- EdgeModeValidation.cs
- CollectionViewGroupInternal.cs
- SmtpClient.cs
- WizardForm.cs
- WebBrowserProgressChangedEventHandler.cs
- ActiveXHelper.cs
- DataBoundControlHelper.cs
- NullableConverter.cs
- AssemblySettingAttributes.cs
- StdRegProviderWrapper.cs
- SBCSCodePageEncoding.cs
- ReadOnlyAttribute.cs
- SerializationHelper.cs
- CustomAssemblyResolver.cs
- MimePart.cs
- XmlSerializerFactory.cs
- ConfigurationSectionHelper.cs
- ScaleTransform.cs
- Preprocessor.cs
- QilSortKey.cs
- SecurityProtocol.cs
- TextReturnReader.cs
- FileSecurity.cs
- ComponentChangedEvent.cs
- UriTemplatePathPartiallyEquivalentSet.cs