Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Messaging / System / Messaging / Design / SizeConverter.cs / 1305376 / SizeConverter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Messaging.Design { using System.Messaging; using System.ComponentModel; using System.Diagnostics; using System; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Globalization; ///internal class SizeConverter : TypeConverter { /// /// /// Determines if this converter can convert an object in the given source /// type to the native type of the converter. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } ////// /// Converts the given object to the converter's native type. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Trim(); if (text.Length == 0 || string.Compare(text, Res.GetString(Res.InfiniteValue), true, CultureInfo.CurrentCulture) == 0) return(long)uint.MaxValue; else { long size = Convert.ToInt64(text, culture); return size; } } return base.ConvertFrom(context, culture, value); } ////// /// Converts the given object to another type. The most common types to convert /// are to and from a string object. The default implementation will make a call /// to ToString on the object if the object is valid and if the destination /// type is string. If this cannot convert to the desitnation type, this will /// throw a NotSupportedException. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(string)) { if (value != null) { if ((long)value == uint.MaxValue) return Res.GetString(Res.InfiniteValue); else return value.ToString(); } } 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.Messaging.Design { using System.Messaging; using System.ComponentModel; using System.Diagnostics; using System; using System.ComponentModel.Design.Serialization; using System.Reflection; using System.Collections; using System.Globalization; ///internal class SizeConverter : TypeConverter { /// /// /// Determines if this converter can convert an object in the given source /// type to the native type of the converter. /// public override bool CanConvertFrom(ITypeDescriptorContext context, Type sourceType) { if (sourceType == typeof(string)) { return true; } return base.CanConvertFrom(context, sourceType); } ////// /// Converts the given object to the converter's native type. /// public override object ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, object value) { if (value is string) { string text = ((string)value).Trim(); if (text.Length == 0 || string.Compare(text, Res.GetString(Res.InfiniteValue), true, CultureInfo.CurrentCulture) == 0) return(long)uint.MaxValue; else { long size = Convert.ToInt64(text, culture); return size; } } return base.ConvertFrom(context, culture, value); } ////// /// Converts the given object to another type. The most common types to convert /// are to and from a string object. The default implementation will make a call /// to ToString on the object if the object is valid and if the destination /// type is string. If this cannot convert to the desitnation type, this will /// throw a NotSupportedException. /// public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == null) { throw new ArgumentNullException("destinationType"); } if (destinationType == typeof(string)) { if (value != null) { if ((long)value == uint.MaxValue) return Res.GetString(Res.InfiniteValue); else return value.ToString(); } } 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
- BinaryObjectWriter.cs
- OleDbCommandBuilder.cs
- ClientCultureInfo.cs
- FontFamilyValueSerializer.cs
- ConstructorExpr.cs
- HttpModule.cs
- OutputCacheProfile.cs
- ControlDesigner.cs
- DBConnectionString.cs
- TimeIntervalCollection.cs
- SmtpNetworkElement.cs
- rsa.cs
- LogicalTreeHelper.cs
- RadioButtonFlatAdapter.cs
- FieldToken.cs
- VisualStyleRenderer.cs
- PrinterResolution.cs
- DuplicateDetector.cs
- Logging.cs
- XPathException.cs
- HostingEnvironmentSection.cs
- TraceSection.cs
- StructuralType.cs
- TableParagraph.cs
- SplineKeyFrames.cs
- ClientConfigurationHost.cs
- KnowledgeBase.cs
- ProcessModuleCollection.cs
- SafeRightsManagementPubHandle.cs
- KnownTypes.cs
- XmlILIndex.cs
- UriScheme.cs
- ExtensibleClassFactory.cs
- TypeUtils.cs
- ModuleBuilderData.cs
- RemoteHelper.cs
- EntitySqlQueryState.cs
- SqlDataSourceFilteringEventArgs.cs
- SpnegoTokenAuthenticator.cs
- WebPartUtil.cs
- ToolStripButton.cs
- XmlPreloadedResolver.cs
- AppSecurityManager.cs
- WebPartConnectionsConnectVerb.cs
- XmlObjectSerializerReadContextComplex.cs
- EnumerableCollectionView.cs
- DesignerForm.cs
- ClipboardData.cs
- PropertyPath.cs
- FieldToken.cs
- SymDocumentType.cs
- ContentElement.cs
- WebConfigurationHost.cs
- HostUtils.cs
- QueryCreatedEventArgs.cs
- BrowserCapabilitiesFactoryBase.cs
- CommonGetThemePartSize.cs
- SignalGate.cs
- SetterBase.cs
- DataSourceView.cs
- baseaxisquery.cs
- UnitySerializationHolder.cs
- HuffCodec.cs
- StreamWithDictionary.cs
- FixedTextBuilder.cs
- ScriptManager.cs
- LabelLiteral.cs
- DesignerRegionMouseEventArgs.cs
- CommonXSendMessage.cs
- CloseCollectionAsyncResult.cs
- WebDisplayNameAttribute.cs
- TextEditorDragDrop.cs
- XmlDictionaryReaderQuotas.cs
- ReferencedAssembly.cs
- XmlNodeList.cs
- _ShellExpression.cs
- ConsoleTraceListener.cs
- CommonGetThemePartSize.cs
- itemelement.cs
- ConnectionOrientedTransportBindingElement.cs
- HttpRawResponse.cs
- WindowsGraphicsCacheManager.cs
- MenuItem.cs
- OleDbParameterCollection.cs
- MeasurementDCInfo.cs
- EnumType.cs
- SqlClientWrapperSmiStreamChars.cs
- GeometryCombineModeValidation.cs
- FlowDocumentPageViewerAutomationPeer.cs
- PerfCounterSection.cs
- PeerResolver.cs
- EntityException.cs
- DBSchemaTable.cs
- AttributeData.cs
- FormsAuthenticationEventArgs.cs
- WS2007FederationHttpBinding.cs
- DockEditor.cs
- BindingContext.cs
- SimpleWebHandlerParser.cs
- FontFamilyIdentifier.cs