Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Converters / Generated / CacheModeValueSerializer.cs / 1305600 / CacheModeValueSerializer.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
{
///
/// CacheModeValueSerializer - ValueSerializer class for converting instances of strings to and from CacheMode instances
/// This is used by the MarkupWriter class.
///
public class CacheModeValueSerializer : 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 CacheMode))
{
return false;
}
CacheMode instance = (CacheMode) value;
#pragma warning suppress 6506 // instance is obviously not null
return instance.CanSerializeToString();
}
///
/// Converts a string into a CacheMode.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return CacheMode.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 CacheMode)
{
CacheMode instance = (CacheMode) 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
{
///
/// CacheModeValueSerializer - ValueSerializer class for converting instances of strings to and from CacheMode instances
/// This is used by the MarkupWriter class.
///
public class CacheModeValueSerializer : 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 CacheMode))
{
return false;
}
CacheMode instance = (CacheMode) value;
#pragma warning suppress 6506 // instance is obviously not null
return instance.CanSerializeToString();
}
///
/// Converts a string into a CacheMode.
///
public override object ConvertFromString(string value, IValueSerializerContext context)
{
if (value != null)
{
return CacheMode.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 CacheMode)
{
CacheMode instance = (CacheMode) 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
- ObjectManager.cs
- CodeTypeOfExpression.cs
- Wildcard.cs
- OdbcDataReader.cs
- TraceEventCache.cs
- Timer.cs
- DetailsViewRowCollection.cs
- LocalizationParserHooks.cs
- TableItemPatternIdentifiers.cs
- MinMaxParagraphWidth.cs
- SamlSecurityTokenAuthenticator.cs
- SourceChangedEventArgs.cs
- ConfigurationStrings.cs
- ObjectListComponentEditor.cs
- PEFileReader.cs
- AttributeEmitter.cs
- cookiecontainer.cs
- DomainUpDown.cs
- MenuAdapter.cs
- MobileUserControlDesigner.cs
- ResourceReferenceExpressionConverter.cs
- AnnotationService.cs
- ProxyHelper.cs
- CannotUnloadAppDomainException.cs
- PermissionSetTriple.cs
- StringAnimationUsingKeyFrames.cs
- Transform.cs
- JapaneseCalendar.cs
- XmlSchemaSimpleContentRestriction.cs
- Slider.cs
- TextFragmentEngine.cs
- EntityStoreSchemaGenerator.cs
- CounterNameConverter.cs
- BuildManagerHost.cs
- FormViewInsertedEventArgs.cs
- ResXDataNode.cs
- connectionpool.cs
- AnonymousIdentificationModule.cs
- ObjectDataSourceDisposingEventArgs.cs
- DataDocumentXPathNavigator.cs
- SymmetricKeyWrap.cs
- Action.cs
- InstancePersistenceEvent.cs
- RichTextBox.cs
- CollectionViewGroupInternal.cs
- MembershipSection.cs
- UnsignedPublishLicense.cs
- AutomationPropertyInfo.cs
- ArrayConverter.cs
- _CookieModule.cs
- TaiwanLunisolarCalendar.cs
- StdValidatorsAndConverters.cs
- AssemblyBuilderData.cs
- ProviderCollection.cs
- KeyNotFoundException.cs
- EngineSiteSapi.cs
- EventOpcode.cs
- FixedLineResult.cs
- ProviderUtil.cs
- MobileFormsAuthentication.cs
- CompiledQuery.cs
- CheckPair.cs
- LabelAutomationPeer.cs
- FrameworkContentElementAutomationPeer.cs
- DesignerView.Commands.cs
- MediaCommands.cs
- LinqDataSourceSelectEventArgs.cs
- BuilderElements.cs
- GridViewUpdatedEventArgs.cs
- SplitterEvent.cs
- UnknownWrapper.cs
- OSFeature.cs
- ListBoxItemWrapperAutomationPeer.cs
- SamlAudienceRestrictionCondition.cs
- RegexGroup.cs
- Pkcs9Attribute.cs
- EventLogPermissionEntry.cs
- TextServicesDisplayAttribute.cs
- XamlReader.cs
- WindowsListViewItemCheckBox.cs
- Debug.cs
- TableStyle.cs
- BitmapEffectInputConnector.cs
- Queue.cs
- Base64Decoder.cs
- DynamicPropertyHolder.cs
- RectangleHotSpot.cs
- ServiceNameCollection.cs
- FacetChecker.cs
- SmiRecordBuffer.cs
- InfoCardTrace.cs
- NumericUpDown.cs
- MapPathBasedVirtualPathProvider.cs
- CompositeTypefaceMetrics.cs
- Matrix.cs
- Pointer.cs
- PTManager.cs
- Messages.cs
- EntityProviderServices.cs
- Content.cs