Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- RepeatBehavior.cs
- ResourceContainer.cs
- HtmlTable.cs
- PasswordTextContainer.cs
- CounterCreationDataCollection.cs
- CodeDomLoader.cs
- ManageRequest.cs
- TextWriter.cs
- EventPrivateKey.cs
- CommandDevice.cs
- WebPartTransformerAttribute.cs
- DataTableMappingCollection.cs
- SafeNativeMethods.cs
- odbcmetadatafactory.cs
- DataGridDesigner.cs
- TypeNameConverter.cs
- SystemIcmpV6Statistics.cs
- JoinCqlBlock.cs
- DataControlCommands.cs
- GenericWebPart.cs
- DynamicMethod.cs
- ViewBase.cs
- DataColumnMappingCollection.cs
- WebPartVerbCollection.cs
- ToolTip.cs
- PnrpPeerResolver.cs
- HTTPNotFoundHandler.cs
- ReflectTypeDescriptionProvider.cs
- StandardTransformFactory.cs
- RangeValuePattern.cs
- HitTestParameters3D.cs
- BooleanConverter.cs
- DateTimeConstantAttribute.cs
- PrintPreviewControl.cs
- SystemGatewayIPAddressInformation.cs
- Stacktrace.cs
- CodeCatchClauseCollection.cs
- ResolveDuplexAsyncResult.cs
- FocusWithinProperty.cs
- DSACryptoServiceProvider.cs
- QilFactory.cs
- GradientStop.cs
- CaseInsensitiveHashCodeProvider.cs
- HtmlTableRow.cs
- DataListCommandEventArgs.cs
- WeakHashtable.cs
- WebReferenceOptions.cs
- LineBreakRecord.cs
- FileResponseElement.cs
- DefaultTextStoreTextComposition.cs
- TextEditorSelection.cs
- IOException.cs
- BasicHttpMessageSecurity.cs
- NavigationCommands.cs
- SHA1Managed.cs
- FrameworkTemplate.cs
- PeerTransportListenAddressValidator.cs
- XmlEntity.cs
- RemotingSurrogateSelector.cs
- DataServiceHost.cs
- FontWeightConverter.cs
- WorkflowRuntime.cs
- Int32Rect.cs
- AsyncPostBackTrigger.cs
- IntSecurity.cs
- RtfControlWordInfo.cs
- CodeMethodReturnStatement.cs
- dataprotectionpermission.cs
- uribuilder.cs
- Matrix3D.cs
- Model3DGroup.cs
- thaishape.cs
- XmlAttributeAttribute.cs
- CodeDirectoryCompiler.cs
- ProcessModelSection.cs
- XmlSchemaComplexContent.cs
- AttributeUsageAttribute.cs
- SizeF.cs
- ListViewHitTestInfo.cs
- ArgIterator.cs
- ConstrainedDataObject.cs
- _AuthenticationState.cs
- SqlWebEventProvider.cs
- EntityTemplateUserControl.cs
- HitTestResult.cs
- EventLogEntry.cs
- RtType.cs
- VariableExpressionConverter.cs
- ObjectDataSourceChooseMethodsPanel.cs
- DebugView.cs
- NamespaceListProperty.cs
- BufferBuilder.cs
- PropertyNames.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- InheritanceAttribute.cs
- StylusPlugInCollection.cs
- XPathBuilder.cs
- DependentList.cs
- SchemaComplexType.cs
- FixedTextBuilder.cs