Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / CompMod / System / ComponentModel / basenumberconverter.cs / 1 / basenumberconverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.ComponentModel { using Microsoft.Win32; using System.Diagnostics; using System.Globalization; using System.Runtime.InteropServices; using System.Runtime.Remoting; using System.Runtime.Serialization.Formatters; using System.Security.Permissions; ////// [HostProtection(SharedState = true)] public abstract class BaseNumberConverter : TypeConverter { ///Provides a base type converter for integral types. ////// Determines whether this editor will attempt to convert hex (0x or #) strings /// internal virtual bool AllowHex { get { return true; } } ////// The Type this converter is targeting (e.g. Int16, UInt32, etc.) /// internal abstract Type TargetType { get; } ////// Convert the given value to a string using the given radix /// internal abstract object FromString(string value, int radix); ////// Convert the given value to a string using the given formatInfo /// internal abstract object FromString(string value, NumberFormatInfo formatInfo); ////// Convert the given value to a string using the given CultureInfo /// internal abstract object FromString(string value, CultureInfo culture); ////// Create an error based on the failed text and the exception thrown. /// internal virtual Exception FromStringError(string failedText, Exception innerException) { return new Exception(SR.GetString(SR.ConvertInvalidPrimitive, failedText, TargetType.Name), innerException); } ////// Convert the given value from a string using the given formatInfo /// internal abstract string ToString(object value, NumberFormatInfo formatInfo); ////// 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 64-bit signed integer object using the specified context. ////// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Trim(); try { if (AllowHex && text[0] == '#') { return FromString(text.Substring(1), 16); } else if (AllowHex && text.StartsWith("0x") || text.StartsWith("0X") || text.StartsWith("&h") || text.StartsWith("&H")) { return FromString(text.Substring(2), 16); } else { if (culture == null) { culture = CultureInfo.CurrentCulture; } NumberFormatInfo formatInfo = (NumberFormatInfo)culture.GetFormat(typeof(NumberFormatInfo)); return FromString(text, formatInfo); } } catch (Exception e) { throw FromStringError(text, e); } catch { throw; } } return base.ConvertFrom(context, culture, value); } ///Converts the given value object to a 64-bit signed integer object. ////// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(string) && value != null && TargetType.IsInstanceOfType(value)) { if (culture == null) { culture = CultureInfo.CurrentCulture; } NumberFormatInfo formatInfo = (NumberFormatInfo)culture.GetFormat(typeof(NumberFormatInfo)); return ToString(value, formatInfo); } if (destinationType.IsPrimitive) { return Convert.ChangeType(value, destinationType, culture); } return base.ConvertTo(context, culture, value, destinationType); } public override bool CanConvertTo(ITypeDescriptorContext context, Type t) { if (base.CanConvertTo(context, t) || t.IsPrimitive) { return true; } return false; } } }Converts the given value object to a 64-bit signed integer object using the /// arguments. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MsmqChannelListenerBase.cs
- PropertyChangeTracker.cs
- Debug.cs
- HeaderUtility.cs
- ConnectionInterfaceCollection.cs
- WpfGeneratedKnownTypes.cs
- DirectionalLight.cs
- RoutedEventValueSerializer.cs
- FrameDimension.cs
- ArraySet.cs
- SystemIcmpV4Statistics.cs
- OneOfElement.cs
- CacheEntry.cs
- ValidateNames.cs
- XmlSignatureManifest.cs
- MimeTypePropertyAttribute.cs
- BitStack.cs
- ResourceSet.cs
- ApplicationException.cs
- QuinticEase.cs
- MetadataArtifactLoaderResource.cs
- EmptyEnumerable.cs
- WebPartCollection.cs
- ObjectQuery.cs
- HttpResponseBase.cs
- XmlSerializationReader.cs
- XmlNotation.cs
- EntityCommand.cs
- PieceDirectory.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- FileSystemEnumerable.cs
- WebPartTransformer.cs
- CategoryAttribute.cs
- ResXDataNode.cs
- Emitter.cs
- SearchForVirtualItemEventArgs.cs
- CaseInsensitiveOrdinalStringComparer.cs
- TableLayoutPanelCodeDomSerializer.cs
- DBCommand.cs
- SspiNegotiationTokenProvider.cs
- Mutex.cs
- GridErrorDlg.cs
- ByteStack.cs
- PagesChangedEventArgs.cs
- PageWrapper.cs
- initElementDictionary.cs
- Separator.cs
- LinqDataSourceStatusEventArgs.cs
- DefaultTextStore.cs
- ManagedWndProcTracker.cs
- ReceiveMessageRecord.cs
- XamlFxTrace.cs
- Filter.cs
- ProviderConnectionPoint.cs
- SubclassTypeValidatorAttribute.cs
- InvokeProviderWrapper.cs
- FontNamesConverter.cs
- MailMessageEventArgs.cs
- ParsedAttributeCollection.cs
- RestClientProxyHandler.cs
- RegexWriter.cs
- XmlSchemaAnnotated.cs
- XmlAttributeAttribute.cs
- FigureParaClient.cs
- WebBrowsableAttribute.cs
- DataGridViewControlCollection.cs
- TextRange.cs
- XmlEncApr2001.cs
- OneOfScalarConst.cs
- OleDbPermission.cs
- TagNameToTypeMapper.cs
- ObjectManager.cs
- UIElement3D.cs
- TimelineClockCollection.cs
- DesignerActionService.cs
- COM2ExtendedBrowsingHandler.cs
- ResumeStoryboard.cs
- DataSourceControl.cs
- HtmlGenericControl.cs
- ControlDesigner.cs
- HandledMouseEvent.cs
- SqlClientPermission.cs
- BinHexDecoder.cs
- _emptywebproxy.cs
- UserControlAutomationPeer.cs
- MsmqIntegrationSecurityElement.cs
- XPathMessageContext.cs
- ElementAction.cs
- ModelFactory.cs
- EventEntry.cs
- Popup.cs
- ToolboxItemCollection.cs
- DateTimePicker.cs
- SoapCodeExporter.cs
- ToolStripSplitStackLayout.cs
- ServiceDiscoveryElement.cs
- ProcessStartInfo.cs
- Rectangle.cs
- XmlSignatureProperties.cs
- FindCompletedEventArgs.cs