Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Converters / Generated / PathFigureCollectionValueSerializer.cs / 1305600 / PathFigureCollectionValueSerializer.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
{
///
/// PathFigureCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from PathFigureCollection instances
/// This is used by the MarkupWriter class.
///
public class PathFigureCollectionValueSerializer : 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 PathFigureCollection))
{
return false;
}
PathFigureCollection instance = (PathFigureCollection) value;
#pragma warning suppress 6506 // instance is obviously not null
return instance.CanSerializeToString();
}
///
/// Converts a string into a PathFigureCollection.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return PathFigureCollection.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 PathFigureCollection)
{
PathFigureCollection instance = (PathFigureCollection) 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
{
///
/// PathFigureCollectionValueSerializer - ValueSerializer class for converting instances of strings to and from PathFigureCollection instances
/// This is used by the MarkupWriter class.
///
public class PathFigureCollectionValueSerializer : 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 PathFigureCollection))
{
return false;
}
PathFigureCollection instance = (PathFigureCollection) value;
#pragma warning suppress 6506 // instance is obviously not null
return instance.CanSerializeToString();
}
///
/// Converts a string into a PathFigureCollection.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return PathFigureCollection.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 PathFigureCollection)
{
PathFigureCollection instance = (PathFigureCollection) 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
- DefaultShape.cs
- SemaphoreFullException.cs
- ChannelSettingsElement.cs
- DoubleConverter.cs
- SurrogateEncoder.cs
- XamlSerializer.cs
- TextContainerChangeEventArgs.cs
- Int16Animation.cs
- manifestimages.cs
- ObjectStateFormatter.cs
- SqlProcedureAttribute.cs
- XmlDictionaryReaderQuotas.cs
- DSACryptoServiceProvider.cs
- Accessors.cs
- LineInfo.cs
- LicFileLicenseProvider.cs
- MouseButtonEventArgs.cs
- UIElement.cs
- baseaxisquery.cs
- ServicePrincipalNameElement.cs
- SqlFileStream.cs
- ConditionChanges.cs
- ResponseStream.cs
- Contracts.cs
- MappingSource.cs
- NameValueSectionHandler.cs
- ToolStripDropDownClosingEventArgs.cs
- CounterSetInstanceCounterDataSet.cs
- _ProxyRegBlob.cs
- ConfigXmlAttribute.cs
- Profiler.cs
- SqlProviderManifest.cs
- WSDualHttpBinding.cs
- SspiHelper.cs
- WebBrowserDesigner.cs
- IndexedSelectQueryOperator.cs
- BufferBuilder.cs
- ExtendedPropertyCollection.cs
- DependencyPropertyKey.cs
- WebSysDescriptionAttribute.cs
- SharedUtils.cs
- METAHEADER.cs
- ConfigurationSection.cs
- CatalogZoneBase.cs
- MenuItemBinding.cs
- ImpersonationContext.cs
- WsatTransactionFormatter.cs
- TreeIterator.cs
- TypeForwardedToAttribute.cs
- DataListItemEventArgs.cs
- EncodingDataItem.cs
- ClientSettingsProvider.cs
- VerificationAttribute.cs
- RawMouseInputReport.cs
- VisualCollection.cs
- DesignerActionUI.cs
- PlacementWorkspace.cs
- ObjectDataSource.cs
- CheckBoxAutomationPeer.cs
- SizeFConverter.cs
- ListContractAdapter.cs
- ChangePasswordDesigner.cs
- DispatchChannelSink.cs
- TreeNode.cs
- DoubleCollectionValueSerializer.cs
- GlyphingCache.cs
- Baml2006KnownTypes.cs
- CounterSampleCalculator.cs
- PermissionRequestEvidence.cs
- MatrixTransform.cs
- ObjectCloneHelper.cs
- ThemeableAttribute.cs
- PropertyKey.cs
- UidPropertyAttribute.cs
- DecimalKeyFrameCollection.cs
- DbInsertCommandTree.cs
- CustomSignedXml.cs
- RuntimeHelpers.cs
- ItemCheckedEvent.cs
- IsolatedStorageFile.cs
- ExpressionDumper.cs
- SecurityTokenSerializer.cs
- GridViewRowEventArgs.cs
- DependentList.cs
- AmbientLight.cs
- TableRow.cs
- HtmlElementCollection.cs
- srgsitem.cs
- AutomationProperty.cs
- Image.cs
- ViewManager.cs
- Color.cs
- AdobeCFFWrapper.cs
- LookupBindingPropertiesAttribute.cs
- ViewLoader.cs
- Stack.cs
- FormsAuthenticationUser.cs
- UMPAttributes.cs
- SourceItem.cs
- SamlSecurityToken.cs