Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Converters / Generated / GeometryValueSerializer.cs / 1305600 / GeometryValueSerializer.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.KnownBoxes; using MS.Internal.Collections; using MS.Internal.PresentationCore; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Effects; using System.Windows.Media.Media3D; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Windows.Media.Imaging; using System.Windows.Markup; using System.Windows.Media.Converters; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Converters { ////// GeometryValueSerializer - ValueSerializer class for converting instances of strings to and from Geometry instances /// This is used by the MarkupWriter class. /// public class GeometryValueSerializer : 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) { // When invoked by the serialization engine we can convert to string only for some instances if (!(value is Geometry)) { return false; } Geometry instance = (Geometry) value; #pragma warning suppress 6506 // instance is obviously not null return instance.CanSerializeToString(); } ////// Converts a string into a Geometry. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Geometry.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 Geometry) { Geometry instance = (Geometry) value; // When invoked by the serialization engine we can convert to string only for some instances #pragma warning suppress 6506 // instance is obviously not null if (!instance.CanSerializeToString()) { // Let base throw an exception. return base.ConvertToString(value, context); } #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. //---------------------------------------------------------------------------- // //// 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.KnownBoxes; using MS.Internal.Collections; using MS.Internal.PresentationCore; using MS.Utility; using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Reflection; using System.Runtime.InteropServices; using System.ComponentModel.Design.Serialization; using System.Text; using System.Windows; using System.Windows.Media; using System.Windows.Media.Effects; using System.Windows.Media.Media3D; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using System.Windows.Media.Imaging; using System.Windows.Markup; using System.Windows.Media.Converters; using System.Security; using System.Security.Permissions; using SR=MS.Internal.PresentationCore.SR; using SRID=MS.Internal.PresentationCore.SRID; #pragma warning disable 1634, 1691 // suppressing PreSharp warnings namespace System.Windows.Media.Converters { ////// GeometryValueSerializer - ValueSerializer class for converting instances of strings to and from Geometry instances /// This is used by the MarkupWriter class. /// public class GeometryValueSerializer : 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) { // When invoked by the serialization engine we can convert to string only for some instances if (!(value is Geometry)) { return false; } Geometry instance = (Geometry) value; #pragma warning suppress 6506 // instance is obviously not null return instance.CanSerializeToString(); } ////// Converts a string into a Geometry. /// public override object ConvertFromString(string value, IValueSerializerContext context) { if (value != null) { return Geometry.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 Geometry) { Geometry instance = (Geometry) value; // When invoked by the serialization engine we can convert to string only for some instances #pragma warning suppress 6506 // instance is obviously not null if (!instance.CanSerializeToString()) { // Let base throw an exception. return base.ConvertToString(value, context); } #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
- EnumUnknown.cs
- PageTrueTypeFont.cs
- ContainerControl.cs
- FeedUtils.cs
- CallbackHandler.cs
- AssemblyCollection.cs
- WorkflowDesigner.cs
- StringFreezingAttribute.cs
- CopyOfAction.cs
- EntityDataSourceChangedEventArgs.cs
- SmiEventSink_DeferedProcessing.cs
- GridViewHeaderRowPresenter.cs
- WindowsRichEdit.cs
- DataGridViewImageCell.cs
- DocumentGrid.cs
- KeyGesture.cs
- DesignerOptionService.cs
- CodeNamespace.cs
- Page.cs
- FileChangesMonitor.cs
- HttpWriter.cs
- SoapExtensionTypeElementCollection.cs
- OdbcInfoMessageEvent.cs
- TableRowCollection.cs
- EventLogEntryCollection.cs
- Shape.cs
- PermissionAttributes.cs
- ProtocolsConfiguration.cs
- RightsManagementEncryptionTransform.cs
- ButtonColumn.cs
- XmlSchemaSimpleTypeUnion.cs
- ReadContentAsBinaryHelper.cs
- WebRequest.cs
- ByteStream.cs
- SafeSecurityHandles.cs
- ThemeDirectoryCompiler.cs
- Switch.cs
- DocumentXPathNavigator.cs
- Expression.cs
- MultipleCopiesCollection.cs
- rsa.cs
- ScriptComponentDescriptor.cs
- TableParaClient.cs
- base64Transforms.cs
- MiniCustomAttributeInfo.cs
- ReadOnlyDictionary.cs
- Validator.cs
- _SslSessionsCache.cs
- SoapExtension.cs
- InputScopeAttribute.cs
- PtsPage.cs
- FlowDocumentReader.cs
- TransactionManager.cs
- ContainerSelectorActiveEvent.cs
- ICspAsymmetricAlgorithm.cs
- ParameterReplacerVisitor.cs
- InheritanceService.cs
- CodeAccessPermission.cs
- CodeMemberMethod.cs
- TextEndOfParagraph.cs
- TreeViewImageGenerator.cs
- DataViewSetting.cs
- WorkflowTraceTransfer.cs
- DocumentsTrace.cs
- CachedBitmap.cs
- SaveFileDialog.cs
- PackUriHelper.cs
- securitycriticaldata.cs
- SessionSymmetricMessageSecurityProtocolFactory.cs
- ModifiableIteratorCollection.cs
- SystemColorTracker.cs
- PreloadedPackages.cs
- SystemUdpStatistics.cs
- FloatUtil.cs
- InputProcessorProfilesLoader.cs
- ProtectedProviderSettings.cs
- WindowsListBox.cs
- XmlSerializerObjectSerializer.cs
- ArgumentNullException.cs
- Environment.cs
- XmlReader.cs
- DataSourceExpression.cs
- Variable.cs
- MatrixTransform3D.cs
- ConfigurationFileMap.cs
- SafeHandle.cs
- LinqToSqlWrapper.cs
- CompiledQueryCacheKey.cs
- COM2DataTypeToManagedDataTypeConverter.cs
- StringToken.cs
- BoundPropertyEntry.cs
- KeyInstance.cs
- KerberosSecurityTokenParameters.cs
- SafeSecurityHelper.cs
- NestedContainer.cs
- BuildDependencySet.cs
- Int64AnimationBase.cs
- UriTemplateTableMatchCandidate.cs
- CodeArrayCreateExpression.cs
- DbException.cs