Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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);
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- VisualTreeUtils.cs
- Button.cs
- X509Utils.cs
- DependencyObjectProvider.cs
- PeerTransportElement.cs
- WindowsToolbarItemAsMenuItem.cs
- XsltQilFactory.cs
- MdiWindowListItemConverter.cs
- SiteIdentityPermission.cs
- OuterProxyWrapper.cs
- TextRangeEditLists.cs
- NameSpaceEvent.cs
- IUnknownConstantAttribute.cs
- MultiplexingDispatchMessageFormatter.cs
- LicFileLicenseProvider.cs
- XPathNavigatorReader.cs
- EdmConstants.cs
- TreeNodeClickEventArgs.cs
- TrustManager.cs
- ToolZone.cs
- CompilerError.cs
- HttpListenerResponse.cs
- WpfGeneratedKnownProperties.cs
- SurrogateChar.cs
- HtmlTextArea.cs
- XmlParser.cs
- Subordinate.cs
- Triplet.cs
- Span.cs
- ImportContext.cs
- DelegatingTypeDescriptionProvider.cs
- RegexRunner.cs
- ReliabilityContractAttribute.cs
- AppearanceEditorPart.cs
- JsonCollectionDataContract.cs
- SubtreeProcessor.cs
- SatelliteContractVersionAttribute.cs
- PersonalizationAdministration.cs
- FigureParaClient.cs
- TypeBuilder.cs
- ActivationArguments.cs
- StringHandle.cs
- StateManagedCollection.cs
- MailWebEventProvider.cs
- ExpressionVisitor.cs
- PlanCompilerUtil.cs
- CardSpacePolicyElement.cs
- TextPattern.cs
- RSAOAEPKeyExchangeDeformatter.cs
- SynchronizedInputAdaptor.cs
- IApplicationTrustManager.cs
- Utils.cs
- FileReservationCollection.cs
- FormatException.cs
- PageWrapper.cs
- IsolatedStorageFilePermission.cs
- ManipulationPivot.cs
- WebPartEditorApplyVerb.cs
- ApplicationCommands.cs
- RuntimeEnvironment.cs
- FontStretchConverter.cs
- DataError.cs
- Literal.cs
- LoginAutoFormat.cs
- EncryptedKey.cs
- ReachObjectContext.cs
- NativeObjectSecurity.cs
- NumberFormatter.cs
- HelpHtmlBuilder.cs
- SequentialWorkflowHeaderFooter.cs
- DataGridDesigner.cs
- RsaSecurityToken.cs
- DiscoveryEndpoint.cs
- UnsafeNativeMethods.cs
- WaitHandle.cs
- DecimalConstantAttribute.cs
- EventDescriptorCollection.cs
- StreamInfo.cs
- DataControlFieldsEditor.cs
- BlurEffect.cs
- SQLChars.cs
- WizardPanel.cs
- QueueProcessor.cs
- UnsafeNativeMethods.cs
- DoWhileDesigner.xaml.cs
- ProfileSettings.cs
- GenerateScriptTypeAttribute.cs
- SystemIPv6InterfaceProperties.cs
- UnmanagedMemoryStreamWrapper.cs
- IndexerNameAttribute.cs
- DataGridCellsPresenter.cs
- DesignerForm.cs
- LocatorPart.cs
- CompilationUnit.cs
- WindowsPen.cs
- InertiaRotationBehavior.cs
- XmlUrlResolver.cs
- FixedSOMPage.cs
- InkCanvasAutomationPeer.cs
- XPathNodeInfoAtom.cs