Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / unitconverter.cs / 1305376 / 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.Web.Util; 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.Web.Util; 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
- ReturnValue.cs
- JoinSymbol.cs
- QueryableDataSourceEditData.cs
- EventData.cs
- DataGridPagerStyle.cs
- BookmarkScope.cs
- BindingGraph.cs
- DetailsViewPagerRow.cs
- SmtpException.cs
- TraceUtility.cs
- WsdlBuildProvider.cs
- SqlConnection.cs
- DesignTimeTemplateParser.cs
- SparseMemoryStream.cs
- EventWaitHandleSecurity.cs
- DataServiceRequest.cs
- OutputCacheModule.cs
- RoleExceptions.cs
- OutOfMemoryException.cs
- DynamicMethod.cs
- NativeMethodsCLR.cs
- ProtocolsConfigurationHandler.cs
- CaseStatement.cs
- HelpOperationInvoker.cs
- SequentialWorkflowRootDesigner.cs
- ClusterRegistryConfigurationProvider.cs
- ComboBox.cs
- DataGridViewCellPaintingEventArgs.cs
- Brush.cs
- XPathException.cs
- RuntimeEnvironment.cs
- StylusEventArgs.cs
- DataObjectFieldAttribute.cs
- SecurityMessageProperty.cs
- PointHitTestResult.cs
- DispatcherSynchronizationContext.cs
- RunInstallerAttribute.cs
- HtmlShimManager.cs
- BaseTemplateBuildProvider.cs
- ObjectTag.cs
- CompiledRegexRunner.cs
- TypeInfo.cs
- ProxyWebPart.cs
- ListViewCommandEventArgs.cs
- Font.cs
- AnonymousIdentificationSection.cs
- NodeFunctions.cs
- StrokeNode.cs
- DesignerLabelAdapter.cs
- COM2Enum.cs
- Literal.cs
- TreeView.cs
- RangeValuePattern.cs
- BinaryObjectWriter.cs
- DBSchemaRow.cs
- ResXFileRef.cs
- SymmetricCryptoHandle.cs
- BindingSource.cs
- CorePropertiesFilter.cs
- DataGridColumnCollectionEditor.cs
- GridViewDeleteEventArgs.cs
- DCSafeHandle.cs
- GraphicsContainer.cs
- OrderedDictionary.cs
- GradientBrush.cs
- ExtensionQuery.cs
- ListItemCollection.cs
- SevenBitStream.cs
- ValuePatternIdentifiers.cs
- StateFinalizationActivity.cs
- ArrangedElementCollection.cs
- AssemblyCache.cs
- XmlDocumentSchema.cs
- TransportContext.cs
- GroupBoxDesigner.cs
- DateTimePicker.cs
- DiagnosticsConfiguration.cs
- ValidationErrorCollection.cs
- WebBrowserNavigatingEventHandler.cs
- DashStyle.cs
- RTTrackingProfile.cs
- JsonFormatMapping.cs
- PaintEvent.cs
- TreeNodeStyleCollection.cs
- ColumnTypeConverter.cs
- RequestQueue.cs
- __FastResourceComparer.cs
- Tile.cs
- DataConnectionHelper.cs
- BrushConverter.cs
- EnumerationRangeValidationUtil.cs
- TransformerConfigurationWizardBase.cs
- ButtonStandardAdapter.cs
- StylusCollection.cs
- RemoteWebConfigurationHostStream.cs
- PropertyMapper.cs
- WindowsFormsHostAutomationPeer.cs
- PrtCap_Public.cs
- WebBrowserNavigatingEventHandler.cs
- OdbcReferenceCollection.cs