Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / System / Windows / Converters / Generated / Int32RectValueSerializer.cs / 1 / Int32RectValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see [....]/default.aspx/Microsoft.Projects.Avalon/MilCodeGen.html for more information. // //--------------------------------------------------------------------------- using MS.Internal; using MS.Internal.WindowsBase; using System; using System.Collections; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Windows.Markup; using System.Windows.Converters; using System.Windows; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Converters { ////// Int32RectValueSerializer - ValueSerializer class for converting instances of strings to and from Int32Rect instances /// This is used by the MarkupWriter class. /// public class Int32RectValueSerializer : ValueSerializer { ////// Returns true. /// public override bool CanConvertFromString(string value, IValueSerializerContext context) { return true; } ////// Returns true if the given value can be converted into a string /// public override bool CanConvertToString(object value, IValueSerializerContext context) { // Validate the input type if (!(value is Int32Rect)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Int32Rect"), "value"); } return true; } ////// Converts a string into a Int32Rect. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Int32Rect.Parse(value ); } else { return base.ConvertFromString( value, context ); } } ////// Converts the value into a string. /// public override string ConvertToString(object value, IValueSerializerContext context) { if (value is Int32Rect) { Int32Rect instance = (Int32Rect) value; #pragma warning suppress 6506 // instance is obviously not null return instance.ConvertToString(null, CultureInfo.GetCultureInfo("en-us") ); } return base.ConvertToString(value, context); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Triangle.cs
- WebMessageEncodingElement.cs
- ClientSettingsProvider.cs
- Signature.cs
- FileFormatException.cs
- VirtualPathUtility.cs
- Object.cs
- XamlBuildProvider.cs
- CrossSiteScriptingValidation.cs
- DbModificationClause.cs
- SiteMapHierarchicalDataSourceView.cs
- FormsAuthentication.cs
- ImageListImage.cs
- MaterialGroup.cs
- NavigatorInput.cs
- MissingManifestResourceException.cs
- ThrowHelper.cs
- DataGridTableCollection.cs
- CacheMemory.cs
- ValueType.cs
- BridgeDataRecord.cs
- GetPolicyDetailsRequest.cs
- DbException.cs
- ExitEventArgs.cs
- AspCompat.cs
- DefaultMergeHelper.cs
- HtmlShim.cs
- BinaryUtilClasses.cs
- PropertyGrid.cs
- BitmapImage.cs
- QualifiedCellIdBoolean.cs
- HexParser.cs
- KoreanCalendar.cs
- ProcessInfo.cs
- UInt32.cs
- WpfXamlMember.cs
- BamlTreeUpdater.cs
- BindingList.cs
- HttpHandlersSection.cs
- basecomparevalidator.cs
- ConfigurationSettings.cs
- VSWCFServiceContractGenerator.cs
- RegistryKey.cs
- InternalPermissions.cs
- NullableBoolConverter.cs
- AutomationPropertyInfo.cs
- FormCollection.cs
- TableColumn.cs
- Region.cs
- ConfigXmlWhitespace.cs
- HttpPostLocalhostServerProtocol.cs
- Pointer.cs
- DataGridDetailsPresenterAutomationPeer.cs
- Hashtable.cs
- XPathSelfQuery.cs
- DataGridViewButtonCell.cs
- FirewallWrapper.cs
- ApplicationServiceManager.cs
- Geometry.cs
- Set.cs
- KeyInstance.cs
- EraserBehavior.cs
- SqlTransaction.cs
- TypeToken.cs
- AssemblyResourceLoader.cs
- UnSafeCharBuffer.cs
- OletxResourceManager.cs
- MessageBox.cs
- PingReply.cs
- GB18030Encoding.cs
- ReadOnlyHierarchicalDataSourceView.cs
- MediaElementAutomationPeer.cs
- ScriptingAuthenticationServiceSection.cs
- sqlstateclientmanager.cs
- ClientSession.cs
- CodeAccessSecurityEngine.cs
- InfiniteIntConverter.cs
- VBIdentifierName.cs
- DynamicValueConverter.cs
- RuntimeEnvironment.cs
- MobileListItemCollection.cs
- ColorAnimationUsingKeyFrames.cs
- DataBoundControl.cs
- TabControl.cs
- SchemaElementLookUpTableEnumerator.cs
- RadioButtonList.cs
- OdbcEnvironment.cs
- SrgsSubset.cs
- XmlBinaryReader.cs
- NoneExcludedImageIndexConverter.cs
- VirtualPathData.cs
- ErrorWebPart.cs
- _TLSstream.cs
- PermissionSet.cs
- UpdatePanel.cs
- SrgsElement.cs
- COM2ExtendedUITypeEditor.cs
- CornerRadiusConverter.cs
- IntSecurity.cs
- MyContact.cs