Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / Base / System / Windows / Converters / Generated / RectValueSerializer.cs / 1 / RectValueSerializer.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 { ////// RectValueSerializer - ValueSerializer class for converting instances of strings to and from Rect instances /// This is used by the MarkupWriter class. /// public class RectValueSerializer : 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 Rect)) { throw new ArgumentException(SR.Get(SRID.General_Expected_Type, "Rect"), "value"); } return true; } ////// Converts a string into a Rect. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Rect.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 Rect) { Rect instance = (Rect) 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
- DefaultBinder.cs
- FamilyCollection.cs
- GroupItem.cs
- ChannelPoolSettingsElement.cs
- VirtualDirectoryMappingCollection.cs
- PasswordTextContainer.cs
- TagMapCollection.cs
- PeerObject.cs
- DesignerSelectionListAdapter.cs
- ContainerAction.cs
- WinCategoryAttribute.cs
- ZipIOExtraField.cs
- ProviderBase.cs
- Glyph.cs
- ChtmlPhoneCallAdapter.cs
- AddingNewEventArgs.cs
- ITreeGenerator.cs
- RenderContext.cs
- TextTrailingCharacterEllipsis.cs
- FontSourceCollection.cs
- StoreItemCollection.cs
- ExpandedWrapper.cs
- ToolStripLocationCancelEventArgs.cs
- SqlConnectionString.cs
- PersonalizationStateInfo.cs
- _IPv4Address.cs
- XMLSchema.cs
- SystemInfo.cs
- HostedNamedPipeTransportManager.cs
- TypeDescriptionProviderAttribute.cs
- DrawingAttributesDefaultValueFactory.cs
- RenderContext.cs
- Misc.cs
- TreeView.cs
- TiffBitmapEncoder.cs
- FixedDocumentPaginator.cs
- ContentType.cs
- Mappings.cs
- AQNBuilder.cs
- XPathItem.cs
- WebPartTracker.cs
- DropSource.cs
- FloatMinMaxAggregationOperator.cs
- NotFiniteNumberException.cs
- DocumentPropertiesDialog.cs
- FontSource.cs
- JoinGraph.cs
- DocumentSequenceHighlightLayer.cs
- AdapterDictionary.cs
- IArgumentProvider.cs
- TextMetrics.cs
- SystemColorTracker.cs
- TextTreeRootTextBlock.cs
- HttpAsyncResult.cs
- HandlerWithFactory.cs
- ReadOnlyHierarchicalDataSourceView.cs
- X509ChainElement.cs
- RequestCacheManager.cs
- RectangleGeometry.cs
- UpDownEvent.cs
- SafeTimerHandle.cs
- WebBaseEventKeyComparer.cs
- AliasedSlot.cs
- Types.cs
- GraphicsContainer.cs
- PerformanceCounterManager.cs
- RefreshEventArgs.cs
- Regex.cs
- Margins.cs
- ObfuscateAssemblyAttribute.cs
- TypefaceMetricsCache.cs
- ParserHooks.cs
- SoapEnumAttribute.cs
- UIElementIsland.cs
- DataBindingList.cs
- ProjectionCamera.cs
- LayoutEditorPart.cs
- PointLightBase.cs
- TrackingProfile.cs
- CommandConverter.cs
- FigureParagraph.cs
- OracleInfoMessageEventArgs.cs
- SingleAnimationBase.cs
- WebPartRestoreVerb.cs
- SystemGatewayIPAddressInformation.cs
- DataGridViewComboBoxColumn.cs
- TemplateControlBuildProvider.cs
- InputScope.cs
- Privilege.cs
- ReadOnlyPropertyMetadata.cs
- Encoding.cs
- SafeRightsManagementHandle.cs
- DataException.cs
- HyperLinkStyle.cs
- SequenceFullException.cs
- TextTreeRootNode.cs
- ScalarType.cs
- CommandEventArgs.cs
- AssociatedControlConverter.cs
- MediaTimeline.cs