Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / unitconverter.cs / 1 / unitconverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Globalization; using System.Reflection; using System.Security.Permissions; using System.Web.Util; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class UnitConverter : TypeConverter { ////// /// Returns a value indicating whether the unit converter can /// convert from the specified source type. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } else { return base.CanConvertFrom(context, sourceType); } } ////// /// Returns a value indicating whether the converter can /// convert to the specified destination type. /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if ((destinationType == typeof(string)) || (destinationType == typeof(InstanceDescriptor))) { return true; } else { return base.CanConvertTo(context, destinationType); } } ////// /// Performs type conversion from the given value into a Unit. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value == null) return null; string stringValue = value as string; if (stringValue != null) { string textValue = stringValue.Trim(); if (textValue.Length == 0) { return Unit.Empty; } if (culture != null) { return Unit.Parse(textValue, culture); } else { return Unit.Parse(textValue, CultureInfo.CurrentCulture); } } else { return base.ConvertFrom(context, culture, value); } } ////// /// Performs type conversion to the specified destination type /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string)) { if ((value == null) || ((Unit)value).IsEmpty) return String.Empty; else return ((Unit)value).ToString(culture); } else if ((destinationType == typeof(InstanceDescriptor)) && (value != null)) { Unit u = (Unit)value; MemberInfo member = null; object[] args = null; if (u.IsEmpty) { member = typeof(Unit).GetField("Empty"); } else { member = typeof(Unit).GetConstructor(new Type[] { typeof(double), typeof(UnitType) }); args = new object[] { u.Value, u.Type }; } Debug.Assert(member != null, "Looks like we're missing Unit.Empty or Unit::ctor(double, UnitType)"); if (member != null) { return new InstanceDescriptor(member, args); } else { return null; } } else { return base.ConvertTo(context, culture, value, destinationType); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Globalization; using System.Reflection; using System.Security.Permissions; using System.Web.Util; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class UnitConverter : TypeConverter { ////// /// Returns a value indicating whether the unit converter can /// convert from the specified source type. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } else { return base.CanConvertFrom(context, sourceType); } } ////// /// Returns a value indicating whether the converter can /// convert to the specified destination type. /// public override bool CanConvertTo(ITypeDescriptorContext context, Type destinationType) { if ((destinationType == typeof(string)) || (destinationType == typeof(InstanceDescriptor))) { return true; } else { return base.CanConvertTo(context, destinationType); } } ////// /// Performs type conversion from the given value into a Unit. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value == null) return null; string stringValue = value as string; if (stringValue != null) { string textValue = stringValue.Trim(); if (textValue.Length == 0) { return Unit.Empty; } if (culture != null) { return Unit.Parse(textValue, culture); } else { return Unit.Parse(textValue, CultureInfo.CurrentCulture); } } else { return base.ConvertFrom(context, culture, value); } } ////// /// Performs type conversion to the specified destination type /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string)) { if ((value == null) || ((Unit)value).IsEmpty) return String.Empty; else return ((Unit)value).ToString(culture); } else if ((destinationType == typeof(InstanceDescriptor)) && (value != null)) { Unit u = (Unit)value; MemberInfo member = null; object[] args = null; if (u.IsEmpty) { member = typeof(Unit).GetField("Empty"); } else { member = typeof(Unit).GetConstructor(new Type[] { typeof(double), typeof(UnitType) }); args = new object[] { u.Value, u.Type }; } Debug.Assert(member != null, "Looks like we're missing Unit.Empty or Unit::ctor(double, UnitType)"); if (member != null) { return new InstanceDescriptor(member, args); } else { return null; } } else { 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
- COM2ExtendedUITypeEditor.cs
- HtmlFormParameterWriter.cs
- ToolStripItem.cs
- ClientUrlResolverWrapper.cs
- CodeExporter.cs
- EventBuilder.cs
- RouteUrlExpressionBuilder.cs
- XPathAncestorIterator.cs
- ModuleBuilder.cs
- SystemColors.cs
- DataSourceGeneratorException.cs
- WpfXamlType.cs
- Parameter.cs
- OptimizedTemplateContentHelper.cs
- AssociationSetEnd.cs
- ReadWriteObjectLock.cs
- VariableDesigner.xaml.cs
- GraphicsPathIterator.cs
- TraceUtility.cs
- XpsPartBase.cs
- DataServiceQueryOfT.cs
- ExeContext.cs
- LinqDataSourceDisposeEventArgs.cs
- InstallerTypeAttribute.cs
- DelayedRegex.cs
- WbmpConverter.cs
- OrderedHashRepartitionEnumerator.cs
- WasHostedComPlusFactory.cs
- DataGridView.cs
- SecurityCriticalDataForSet.cs
- MemberMaps.cs
- PointCollection.cs
- OleDbException.cs
- TagNameToTypeMapper.cs
- XmlAtomicValue.cs
- DependencyObjectType.cs
- LineGeometry.cs
- CheckedListBox.cs
- XmlCharType.cs
- TransactionInterop.cs
- MessageSmuggler.cs
- MetadataItemCollectionFactory.cs
- ListParaClient.cs
- Pen.cs
- ImageFormatConverter.cs
- ConfigXmlWhitespace.cs
- XmlEncoding.cs
- PopOutPanel.cs
- ActionItem.cs
- ToolStripScrollButton.cs
- JoinSymbol.cs
- _SslStream.cs
- PropertyGrid.cs
- DesignerActionItemCollection.cs
- ReceiveErrorHandling.cs
- StateRuntime.cs
- Keyboard.cs
- CacheChildrenQuery.cs
- SafeRightsManagementSessionHandle.cs
- ObjectDataSourceMethodEventArgs.cs
- PeerNameRecordCollection.cs
- StringSorter.cs
- Evaluator.cs
- WindowsRichEditRange.cs
- MetaData.cs
- DriveInfo.cs
- COM2Properties.cs
- FloaterBaseParaClient.cs
- Size3DConverter.cs
- DependentList.cs
- WeakReference.cs
- Module.cs
- ConnectionPoolManager.cs
- GZipStream.cs
- ChangeConflicts.cs
- coordinator.cs
- DelegatingTypeDescriptionProvider.cs
- QueryPageSettingsEventArgs.cs
- ImageMap.cs
- httpstaticobjectscollection.cs
- MimeParameterWriter.cs
- WindowsGraphics2.cs
- ForceCopyBuildProvider.cs
- ImplicitInputBrush.cs
- SQLMembershipProvider.cs
- cryptoapiTransform.cs
- IdentifierService.cs
- FilteredDataSetHelper.cs
- PaintEvent.cs
- DataSourceCacheDurationConverter.cs
- Pointer.cs
- MembershipSection.cs
- ControlParameter.cs
- ProtocolsConfiguration.cs
- InternalEnumValidatorAttribute.cs
- DBDataPermissionAttribute.cs
- FastPropertyAccessor.cs
- BuilderElements.cs
- StorageAssociationSetMapping.cs
- CodeExporter.cs