Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Converters / Generated / RectValueSerializer.cs / 1305600 / RectValueSerializer.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // This file was generated, please do not edit it directly. // // Please see http://wiki/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)) { return false; } 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, System.Windows.Markup.TypeConverterHelper.InvariantEnglishUS); } 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
- ProtectedProviderSettings.cs
- TrustManagerPromptUI.cs
- ThumbButtonInfo.cs
- SettingsPropertyValue.cs
- XNodeNavigator.cs
- Nodes.cs
- MessageHeaderInfoTraceRecord.cs
- ControlBindingsConverter.cs
- GlobalEventManager.cs
- SchemaTableOptionalColumn.cs
- FontDifferentiator.cs
- Camera.cs
- ParallelRangeManager.cs
- ColumnResizeAdorner.cs
- VerticalAlignConverter.cs
- Track.cs
- X509SecurityToken.cs
- CustomWebEventKey.cs
- WebBrowserDocumentCompletedEventHandler.cs
- OptimizedTemplateContentHelper.cs
- ToolStripOverflow.cs
- DataGridViewRow.cs
- DiscoveryMessageSequence11.cs
- ParseHttpDate.cs
- PropertyToken.cs
- FixedBufferAttribute.cs
- SqlBulkCopyColumnMapping.cs
- WindowClosedEventArgs.cs
- URI.cs
- DocumentXPathNavigator.cs
- DescendantQuery.cs
- NativeMethods.cs
- EntitySetRetriever.cs
- RSAProtectedConfigurationProvider.cs
- HwndProxyElementProvider.cs
- MobileContainerDesigner.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- CodeGotoStatement.cs
- BypassElement.cs
- CompilerScope.cs
- QilDataSource.cs
- CodeConditionStatement.cs
- XmlWriterSettings.cs
- IsolatedStorageFilePermission.cs
- StatusBarPanelClickEvent.cs
- RtfFormatStack.cs
- MsmqIntegrationReceiveParameters.cs
- EntityParameter.cs
- NameSpaceExtractor.cs
- TableRowCollection.cs
- TimeEnumHelper.cs
- XmlElementAttribute.cs
- DelegateTypeInfo.cs
- ConfigXmlWhitespace.cs
- ConvertEvent.cs
- BasicKeyConstraint.cs
- UnsafeNativeMethods.cs
- DynamicQueryableWrapper.cs
- AmbientLight.cs
- DebugView.cs
- TextRangeSerialization.cs
- WhitespaceSignificantCollectionAttribute.cs
- AuthenticateEventArgs.cs
- DataGridViewCellMouseEventArgs.cs
- WizardForm.cs
- ContentOperations.cs
- ToolTip.cs
- PolyBezierSegment.cs
- MsdtcWrapper.cs
- XmlSchemaSet.cs
- MimeTypePropertyAttribute.cs
- ViewKeyConstraint.cs
- RegexBoyerMoore.cs
- GroupBoxAutomationPeer.cs
- GlyphTypeface.cs
- ActiveXHost.cs
- SessionPageStateSection.cs
- DependencyObjectPropertyDescriptor.cs
- codemethodreferenceexpression.cs
- TrackingServices.cs
- RegistrationProxy.cs
- OutputCacheSettingsSection.cs
- GenericEnumerator.cs
- PropertySegmentSerializationProvider.cs
- TextWriterTraceListener.cs
- RayMeshGeometry3DHitTestResult.cs
- FatalException.cs
- DefaultIfEmptyQueryOperator.cs
- FtpWebResponse.cs
- TableTextElementCollectionInternal.cs
- SvcMapFile.cs
- QilFunction.cs
- Oci.cs
- InstanceOwnerQueryResult.cs
- DetailsViewModeEventArgs.cs
- ExceptionRoutedEventArgs.cs
- XmlUtilWriter.cs
- SafeMILHandleMemoryPressure.cs
- Select.cs
- Point3DAnimation.cs