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;
///
/// Provides a type converter to convert
/// objects to and from various
/// other representations.
///
[HostProtection(SharedState = true)]
public class TimeSpanConverter : TypeConverter
{
///
/// 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 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 to the given destination type using the context.
///
public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) {
if (destinationType == typeof(InstanceDescriptor)) {
return true;
}
return base.CanConvertTo(context, destinationType);
}
///
/// Converts the given object to a
/// object.
///
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 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
- ServiceHost.cs
- MsmqHostedTransportManager.cs
- TextSelectionProcessor.cs
- RichTextBox.cs
- HttpModuleActionCollection.cs
- FormsAuthenticationModule.cs
- OuterGlowBitmapEffect.cs
- CustomErrorsSectionWrapper.cs
- ScrollProviderWrapper.cs
- DefaultPrintController.cs
- DictionaryEntry.cs
- Helpers.cs
- SqlCacheDependencyDatabaseCollection.cs
- HideDisabledControlAdapter.cs
- FrameSecurityDescriptor.cs
- XmlNamespaceDeclarationsAttribute.cs
- DataGridRow.cs
- TextTreeFixupNode.cs
- SecurityKeyUsage.cs
- VersionedStream.cs
- SchemaImporterExtensionsSection.cs
- AssociationTypeEmitter.cs
- DecimalConverter.cs
- CoTaskMemHandle.cs
- __Error.cs
- TagElement.cs
- ConnectionInterfaceCollection.cs
- DbMetaDataColumnNames.cs
- ToolStripArrowRenderEventArgs.cs
- FileSystemInfo.cs
- ConstructorBuilder.cs
- Message.cs
- XamlClipboardData.cs
- HScrollBar.cs
- IgnoreFlushAndCloseStream.cs
- OutputCache.cs
- CommonGetThemePartSize.cs
- SHA384.cs
- OleDbPropertySetGuid.cs
- MetadataItem_Static.cs
- TypeTypeConverter.cs
- ClickablePoint.cs
- ConfigurationPermission.cs
- Msec.cs
- SQLInt32Storage.cs
- Int32CollectionValueSerializer.cs
- JapaneseLunisolarCalendar.cs
- ClickablePoint.cs
- SoapConverter.cs
- TextElementEnumerator.cs
- MailWebEventProvider.cs
- SafeBitVector32.cs
- DataGridViewRow.cs
- Tablet.cs
- CodeMethodInvokeExpression.cs
- Context.cs
- UserInitiatedRoutedEventPermissionAttribute.cs
- PreservationFileReader.cs
- VersionedStream.cs
- TrackingServices.cs
- ObjectStateEntry.cs
- CombinedGeometry.cs
- SqlMetaData.cs
- DetailsViewPagerRow.cs
- RightsManagementInformation.cs
- SchemaElementDecl.cs
- VectorConverter.cs
- TransportReplyChannelAcceptor.cs
- Accessible.cs
- XmlSignificantWhitespace.cs
- RelationshipFixer.cs
- _ListenerAsyncResult.cs
- ServiceOperation.cs
- ChannelManager.cs
- XmlHierarchicalEnumerable.cs
- MouseActionConverter.cs
- FileBasedResourceGroveler.cs
- MatrixCamera.cs
- UseAttributeSetsAction.cs
- MessageBox.cs
- HtmlTableRow.cs
- ListViewItem.cs
- DataPagerFieldItem.cs
- ResXResourceReader.cs
- CodeArrayIndexerExpression.cs
- MasterPageCodeDomTreeGenerator.cs
- HwndKeyboardInputProvider.cs
- Msmq4PoisonHandler.cs
- HttpProfileBase.cs
- ParseElementCollection.cs
- QilStrConcat.cs
- IItemContainerGenerator.cs
- SiteMapNodeItemEventArgs.cs
- BrowsableAttribute.cs
- TransactionScope.cs
- XmlSchemaAnnotated.cs
- _TransmitFileOverlappedAsyncResult.cs
- SessionState.cs
- CellTreeNode.cs
- RelatedEnd.cs