Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ScrollItemPatternIdentifiers.cs
- StringComparer.cs
- InitiatorServiceModelSecurityTokenRequirement.cs
- SQLGuid.cs
- RealizationDrawingContextWalker.cs
- CompositeFontFamily.cs
- PathFigureCollection.cs
- Timer.cs
- LoginCancelEventArgs.cs
- SafeRegistryKey.cs
- RegexWriter.cs
- SortDescription.cs
- BinaryObjectInfo.cs
- SqlDataSourceEnumerator.cs
- HttpConfigurationSystem.cs
- StyleConverter.cs
- ServiceInstallComponent.cs
- BasicHttpBindingElement.cs
- LogStream.cs
- SQLInt64.cs
- InputLanguageCollection.cs
- CubicEase.cs
- UTF7Encoding.cs
- WindowsToolbarAsMenu.cs
- WebPartZoneCollection.cs
- CommandBinding.cs
- SelectionProcessor.cs
- SmtpException.cs
- ReceiveSecurityHeaderElementManager.cs
- Comparer.cs
- ScriptDescriptor.cs
- SecurityContext.cs
- ContractCodeDomInfo.cs
- ValueHandle.cs
- PropertyPushdownHelper.cs
- XmlRootAttribute.cs
- RenderOptions.cs
- SHA384Cng.cs
- EventMappingSettings.cs
- Byte.cs
- WeakRefEnumerator.cs
- SiteMapDataSourceDesigner.cs
- CheckedListBox.cs
- WebPartHeaderCloseVerb.cs
- DbXmlEnabledProviderManifest.cs
- SettingsSection.cs
- CacheOutputQuery.cs
- GrabHandleGlyph.cs
- XmlILCommand.cs
- DesigntimeLicenseContext.cs
- CorruptStoreException.cs
- DSACryptoServiceProvider.cs
- X509ChainElement.cs
- ScriptManagerProxy.cs
- PanelDesigner.cs
- ActivityInstance.cs
- ParseHttpDate.cs
- IsolatedStorageFilePermission.cs
- RuntimeWrappedException.cs
- ContractBase.cs
- StylusPoint.cs
- TextEditorCharacters.cs
- CodeDelegateCreateExpression.cs
- MutableAssemblyCacheEntry.cs
- EmbeddedMailObjectsCollection.cs
- EdmFunctions.cs
- Button.cs
- ProgressBarHighlightConverter.cs
- RoutedEventValueSerializer.cs
- DataGridToolTip.cs
- PreservationFileWriter.cs
- CodeDelegateInvokeExpression.cs
- SendActivityDesignerTheme.cs
- TreeSet.cs
- Transform3DCollection.cs
- DataView.cs
- Span.cs
- SortExpressionBuilder.cs
- DocumentViewerBase.cs
- CodeTypeConstructor.cs
- TimeStampChecker.cs
- SHA1CryptoServiceProvider.cs
- ExecutionContext.cs
- ByteStorage.cs
- CachingHintValidation.cs
- UnsupportedPolicyOptionsException.cs
- GestureRecognizer.cs
- StringPropertyBuilder.cs
- XmlObjectSerializerWriteContext.cs
- LicenseProviderAttribute.cs
- BooleanExpr.cs
- SafeMILHandle.cs
- WebReferencesBuildProvider.cs
- PageAdapter.cs
- QueryParameter.cs
- View.cs
- DependencySource.cs
- LiteralControl.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- Util.cs