Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Base / System / Windows / Converters / Generated / PointValueSerializer.cs / 1305600 / PointValueSerializer.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 { ////// PointValueSerializer - ValueSerializer class for converting instances of strings to and from Point instances /// This is used by the MarkupWriter class. /// public class PointValueSerializer : 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 Point)) { return false; } return true; } ////// Converts a string into a Point. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Point.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 Point) { Point instance = (Point) 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
- FtpRequestCacheValidator.cs
- CacheMemory.cs
- BitmapSizeOptions.cs
- TextTreeTextBlock.cs
- ConfigXmlSignificantWhitespace.cs
- TreeNodeMouseHoverEvent.cs
- DuplicateContext.cs
- ContextMenuStrip.cs
- RectValueSerializer.cs
- IntegerFacetDescriptionElement.cs
- KeyboardEventArgs.cs
- SafeRegistryHandle.cs
- IDictionary.cs
- TypedMessageConverter.cs
- TypeToArgumentTypeConverter.cs
- BindingValueChangedEventArgs.cs
- FixedNode.cs
- SafeNativeMethods.cs
- oledbconnectionstring.cs
- Rotation3DKeyFrameCollection.cs
- XmlILIndex.cs
- HtmlDocument.cs
- XamlInt32CollectionSerializer.cs
- ButtonStandardAdapter.cs
- FormViewPageEventArgs.cs
- XmlArrayItemAttribute.cs
- WSSecureConversationDec2005.cs
- Hash.cs
- FontStretch.cs
- CultureMapper.cs
- COM2EnumConverter.cs
- DateTime.cs
- ISSmlParser.cs
- TextPenaltyModule.cs
- basenumberconverter.cs
- InputScope.cs
- SystemIcmpV4Statistics.cs
- BindingCollection.cs
- PreloadHost.cs
- BufferedReadStream.cs
- SettingsProperty.cs
- XmlMapping.cs
- BackgroundFormatInfo.cs
- RtType.cs
- KnownTypesHelper.cs
- KoreanCalendar.cs
- PerfService.cs
- AsymmetricKeyExchangeFormatter.cs
- DiscoveryMessageSequenceCD1.cs
- HMACSHA1.cs
- DeflateStreamAsyncResult.cs
- RichTextBoxAutomationPeer.cs
- ProfilePropertySettings.cs
- RegexWorker.cs
- TextEditorSpelling.cs
- VersionPair.cs
- OperandQuery.cs
- HttpAsyncResult.cs
- NativeMethodsCLR.cs
- List.cs
- BatchStream.cs
- BufferedGraphics.cs
- MapPathBasedVirtualPathProvider.cs
- SymLanguageVendor.cs
- SystemIPv6InterfaceProperties.cs
- RoutingExtension.cs
- XamlBuildProvider.cs
- AggregateNode.cs
- IIS7WorkerRequest.cs
- ButtonField.cs
- StringValidator.cs
- XmlSerializableServices.cs
- WindowsToolbarAsMenu.cs
- ToolStripItemTextRenderEventArgs.cs
- EventBindingService.cs
- KerberosSecurityTokenAuthenticator.cs
- SqlComparer.cs
- ClickablePoint.cs
- NativeMethods.cs
- XmlDownloadManager.cs
- MultiTouchSystemGestureLogic.cs
- Rotation3D.cs
- ToolStripPanelCell.cs
- XmlBinaryReaderSession.cs
- KnownBoxes.cs
- MappingException.cs
- CodeIndexerExpression.cs
- TextSerializer.cs
- WindowPattern.cs
- _BaseOverlappedAsyncResult.cs
- LogEntryHeaderSerializer.cs
- DataTableCollection.cs
- XslException.cs
- Hex.cs
- ServiceInfoCollection.cs
- Helpers.cs
- DefaultPropertyAttribute.cs
- CheckBoxPopupAdapter.cs
- WCFServiceClientProxyGenerator.cs
- ExplicitDiscriminatorMap.cs