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
- OrderedDictionaryStateHelper.cs
- NativeActivity.cs
- DataRow.cs
- Module.cs
- MessagePartDescription.cs
- ComponentDispatcher.cs
- LicFileLicenseProvider.cs
- ClassDataContract.cs
- UniqueIdentifierService.cs
- XPathSelfQuery.cs
- ProtocolsConfiguration.cs
- PathTooLongException.cs
- ValidationError.cs
- ACE.cs
- WaitingCursor.cs
- DataFormats.cs
- TextParagraphProperties.cs
- ExitEventArgs.cs
- ToolStripComboBox.cs
- PresentationAppDomainManager.cs
- DesignSurfaceServiceContainer.cs
- TypeConverterHelper.cs
- CodeThrowExceptionStatement.cs
- Expander.cs
- CngUIPolicy.cs
- ActivityInstanceReference.cs
- PathFigureCollectionValueSerializer.cs
- RowBinding.cs
- QilInvokeEarlyBound.cs
- MimeObjectFactory.cs
- FileRecordSequenceHelper.cs
- RenamedEventArgs.cs
- FontCollection.cs
- dataSvcMapFileLoader.cs
- CodeCommentStatementCollection.cs
- Underline.cs
- DataShape.cs
- DataObjectEventArgs.cs
- SqlFormatter.cs
- PromptStyle.cs
- XmlWrappingReader.cs
- RelationshipNavigation.cs
- ConnectionManagementSection.cs
- SymbolResolver.cs
- MetadataSource.cs
- CacheAxisQuery.cs
- XmlChoiceIdentifierAttribute.cs
- sqlpipe.cs
- Profiler.cs
- CreateUserErrorEventArgs.cs
- SamlSecurityToken.cs
- ScalarOps.cs
- MergePropertyDescriptor.cs
- BinaryCommonClasses.cs
- PermissionToken.cs
- HotSpot.cs
- BaseProcessor.cs
- BinaryOperationBinder.cs
- RegexCompilationInfo.cs
- ProtocolsConfiguration.cs
- EventRoute.cs
- Line.cs
- XmlNamespaceMappingCollection.cs
- LicenseManager.cs
- BatchParser.cs
- SelectionItemProviderWrapper.cs
- CurrencyManager.cs
- ChameleonKey.cs
- Button.cs
- ActiveXHelper.cs
- Visual.cs
- StrokeNodeEnumerator.cs
- LogSwitch.cs
- Convert.cs
- TypeLibConverter.cs
- XmlEncoding.cs
- IPPacketInformation.cs
- TextElementEditingBehaviorAttribute.cs
- WebServiceFault.cs
- Style.cs
- PrinterResolution.cs
- CodeSnippetStatement.cs
- SqlRowUpdatedEvent.cs
- RegexCompiler.cs
- CharacterString.cs
- QuaternionKeyFrameCollection.cs
- TableCellAutomationPeer.cs
- TreeNodeMouseHoverEvent.cs
- SiteMapPath.cs
- XmlSerializerFactory.cs
- SqlDataSourceView.cs
- CustomAttribute.cs
- XPathNavigator.cs
- ConnectionManagementSection.cs
- Pair.cs
- ChineseLunisolarCalendar.cs
- FileNameEditor.cs
- SqlConnectionStringBuilder.cs
- ILGenerator.cs
- FixedSchema.cs