Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextServicesManager.cs
- WindowsListView.cs
- QilInvokeEarlyBound.cs
- XmlTextReaderImplHelpers.cs
- BezierSegment.cs
- Proxy.cs
- RecipientInfo.cs
- ComplexBindingPropertiesAttribute.cs
- ProxyWebPartManagerDesigner.cs
- ExtensionSimplifierMarkupObject.cs
- DocumentViewerBase.cs
- SelectedGridItemChangedEvent.cs
- DWriteFactory.cs
- MutableAssemblyCacheEntry.cs
- FormatterServices.cs
- NativeMethods.cs
- SelfIssuedAuthRSACryptoProvider.cs
- TextAction.cs
- GetWinFXPath.cs
- Rectangle.cs
- RadioButtonStandardAdapter.cs
- NotSupportedException.cs
- IUnknownConstantAttribute.cs
- SortedSetDebugView.cs
- FileRecordSequenceHelper.cs
- StatusBarItemAutomationPeer.cs
- HyperLinkColumn.cs
- UnsafeNativeMethodsMilCoreApi.cs
- OleDbCommandBuilder.cs
- QueryContinueDragEventArgs.cs
- Canonicalizers.cs
- ConfigurationStrings.cs
- CustomCategoryAttribute.cs
- ActivitySurrogateSelector.cs
- Invariant.cs
- TypeInfo.cs
- ElementNotEnabledException.cs
- BamlLocalizabilityResolver.cs
- DataControlImageButton.cs
- ItemAutomationPeer.cs
- clipboard.cs
- StandardCommands.cs
- DesignRelation.cs
- SimpleTypeResolver.cs
- GetRecipientRequest.cs
- XmlSchemaProviderAttribute.cs
- BamlRecords.cs
- AnnotationResourceCollection.cs
- DataGridViewRowsRemovedEventArgs.cs
- ReflectTypeDescriptionProvider.cs
- ObjectDataSourceSelectingEventArgs.cs
- WpfXamlMember.cs
- LineSegment.cs
- ScriptIgnoreAttribute.cs
- SessionStateSection.cs
- QilDataSource.cs
- ChannelSinkStacks.cs
- Latin1Encoding.cs
- CodeSubDirectoriesCollection.cs
- ColorAnimationBase.cs
- XamlStyleSerializer.cs
- SmiMetaData.cs
- RoleManagerSection.cs
- SoapReflectionImporter.cs
- TextAdaptor.cs
- sitestring.cs
- XmlAttributeOverrides.cs
- RegexFCD.cs
- TdsParserStateObject.cs
- ExtendedPropertiesHandler.cs
- SafeNativeMethods.cs
- PLINQETWProvider.cs
- ScalarConstant.cs
- KeyGesture.cs
- SctClaimDictionary.cs
- WebPartDescriptionCollection.cs
- AnonymousIdentificationModule.cs
- Vector3DAnimationBase.cs
- SocketManager.cs
- linebase.cs
- Exception.cs
- OuterGlowBitmapEffect.cs
- AssemblyHash.cs
- ListItemParagraph.cs
- ToolStripItemImageRenderEventArgs.cs
- VoiceChangeEventArgs.cs
- Matrix.cs
- XPathCompiler.cs
- Point3DAnimationBase.cs
- ScriptReferenceBase.cs
- InstanceLockQueryResult.cs
- ButtonFieldBase.cs
- WebResponse.cs
- DisableDpiAwarenessAttribute.cs
- DecimalAnimationUsingKeyFrames.cs
- DetailsViewCommandEventArgs.cs
- ChildrenQuery.cs
- XmlSchemaValidationException.cs
- FileDialog_Vista_Interop.cs
- IdentityNotMappedException.cs