Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / ComponentModel / basenumberconverter.cs / 1305376 / 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); } } 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //Converts the given value object to a 64-bit signed integer object using the /// arguments. ///// 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); } } 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; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.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
- CellParaClient.cs
- XhtmlBasicTextBoxAdapter.cs
- DataBoundControlHelper.cs
- ListViewItemEventArgs.cs
- ReadOnlyDictionary.cs
- PropertyChangedEventManager.cs
- DoubleIndependentAnimationStorage.cs
- WebPartConnectionsCancelVerb.cs
- TrustManagerMoreInformation.cs
- FocusTracker.cs
- ListBoxChrome.cs
- IWorkflowDebuggerService.cs
- DataSourceHelper.cs
- DataGridItemEventArgs.cs
- PropertyGridCommands.cs
- Rotation3DAnimationBase.cs
- PerspectiveCamera.cs
- SystemIPv4InterfaceProperties.cs
- UdpContractFilterBehavior.cs
- RayHitTestParameters.cs
- WaitHandle.cs
- SignedInfo.cs
- Unit.cs
- AnimationClock.cs
- dsa.cs
- CleanUpVirtualizedItemEventArgs.cs
- XmlSchemaSimpleContentExtension.cs
- GeneralTransform3DGroup.cs
- SqlUtil.cs
- dataobject.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- PointConverter.cs
- LinqDataSourceStatusEventArgs.cs
- CryptoApi.cs
- VisualStateManager.cs
- HttpWebRequestElement.cs
- StateInitialization.cs
- EdgeProfileValidation.cs
- Expression.cs
- XMLSyntaxException.cs
- DoubleAnimationClockResource.cs
- Focus.cs
- PrinterUnitConvert.cs
- IntPtr.cs
- XmlTextReader.cs
- XmlSchemaSimpleTypeUnion.cs
- IBuiltInEvidence.cs
- GetFileNameResult.cs
- PagesSection.cs
- ArithmeticException.cs
- WebPartsPersonalizationAuthorization.cs
- DrawingContextWalker.cs
- DrawingBrush.cs
- SqlConnectionHelper.cs
- SettingsPropertyWrongTypeException.cs
- XamlLoadErrorInfo.cs
- ResourceProperty.cs
- DuplicateWaitObjectException.cs
- ValidatorCollection.cs
- UrlPath.cs
- RemotingConfigParser.cs
- Dictionary.cs
- DataSourceXmlAttributeAttribute.cs
- WizardPanel.cs
- errorpatternmatcher.cs
- DbMetaDataColumnNames.cs
- DataTablePropertyDescriptor.cs
- CodeDirectoryCompiler.cs
- ComEventsHelper.cs
- bindurihelper.cs
- ValueConversionAttribute.cs
- HelpProvider.cs
- TemplateParser.cs
- RequestContext.cs
- FrameworkElementAutomationPeer.cs
- KeyedQueue.cs
- DataGridViewRowsRemovedEventArgs.cs
- XmlSchemaValidationException.cs
- CodeGeneratorAttribute.cs
- SelectionRangeConverter.cs
- TypeConverterHelper.cs
- RTLAwareMessageBox.cs
- TextElementCollectionHelper.cs
- EventEntry.cs
- TreeNodeStyle.cs
- SvcMapFileLoader.cs
- ClientBuildManagerCallback.cs
- KeyTimeConverter.cs
- DataControlField.cs
- PropertyKey.cs
- UIAgentCrashedException.cs
- LinqDataSourceStatusEventArgs.cs
- Decimal.cs
- SspiWrapper.cs
- TypeCollectionPropertyEditor.cs
- NonSerializedAttribute.cs
- ListViewItemSelectionChangedEvent.cs
- WebBrowserDesigner.cs
- PagerSettings.cs
- TdsParserHelperClasses.cs