Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertyValueChangedEvent.cs
- PlainXmlSerializer.cs
- CodeSnippetStatement.cs
- ZoneMembershipCondition.cs
- PackageDigitalSignature.cs
- ChildDocumentBlock.cs
- Stylesheet.cs
- ResourceReferenceKeyNotFoundException.cs
- InputLanguageSource.cs
- SessionPageStateSection.cs
- DeploymentSection.cs
- MemberCollection.cs
- ITextView.cs
- ObjectSet.cs
- TypeResolvingOptions.cs
- WSSecurityTokenSerializer.cs
- SqlStream.cs
- PhysicalAddress.cs
- X509SecurityToken.cs
- CharEntityEncoderFallback.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- Internal.cs
- TagMapInfo.cs
- WindowsPrincipal.cs
- BaseDataBoundControl.cs
- processwaithandle.cs
- MaskedTextBoxTextEditor.cs
- XmlWrappingReader.cs
- Utils.cs
- TextRange.cs
- ProjectionPathSegment.cs
- PolyBezierSegment.cs
- DataService.cs
- SymmetricKeyWrap.cs
- Operators.cs
- COMException.cs
- PixelShader.cs
- ControlCachePolicy.cs
- UnionCodeGroup.cs
- DocumentDesigner.cs
- ActivationServices.cs
- FileDialogCustomPlace.cs
- SerializerWriterEventHandlers.cs
- ProgressBar.cs
- EncodingDataItem.cs
- SQLDoubleStorage.cs
- BitmapImage.cs
- PermissionToken.cs
- CallSiteBinder.cs
- RectangleConverter.cs
- VectorCollection.cs
- PersonalizationStateQuery.cs
- IndicCharClassifier.cs
- ListViewGroupConverter.cs
- Light.cs
- ServiceHostingEnvironment.cs
- TimeSpanStorage.cs
- FixedSOMFixedBlock.cs
- VideoDrawing.cs
- BrowserCapabilitiesFactory.cs
- DbConnectionPoolIdentity.cs
- Queue.cs
- XmlChildEnumerator.cs
- EnumMemberAttribute.cs
- ETagAttribute.cs
- DashStyles.cs
- WorkflowInstanceSuspendedRecord.cs
- ListView.cs
- JsonStringDataContract.cs
- PaginationProgressEventArgs.cs
- AstTree.cs
- EntityViewContainer.cs
- TextStore.cs
- AttributeTable.cs
- TypeBrowser.xaml.cs
- CallContext.cs
- ContourSegment.cs
- WindowsRichEdit.cs
- HttpClientCertificate.cs
- ObjectToken.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- ReadOnlyDictionary.cs
- Typeface.cs
- BinaryCommonClasses.cs
- RecordBuilder.cs
- JsonWriter.cs
- MultilineStringConverter.cs
- DefaultTraceListener.cs
- EllipseGeometry.cs
- PerspectiveCamera.cs
- InvokeGenerator.cs
- XPathBinder.cs
- Vector3DIndependentAnimationStorage.cs
- DataGridPageChangedEventArgs.cs
- WebMessageBodyStyleHelper.cs
- FormsIdentity.cs
- FrameworkContentElement.cs
- SolidBrush.cs
- MediaScriptCommandRoutedEventArgs.cs
- SQLMembershipProvider.cs