|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
//
using System.ComponentModel;
using SR=MS.Internal.PresentationCore.SR;
namespace System.Windows.Media
{
public abstract partial class CacheMode
{
internal CacheMode ()
{
}
/// <summary>
/// Parse - this method is called by the type converter to parse a CacheMode's string
/// (provided in "value").
/// </summary>
/// <returns>
/// A CacheMode which was created by parsing the "value" argument.
/// </returns>
/// <param name="value"> String representation of a CacheMode. Cannot be null/empty. </param>
internal static CacheMode Parse(string value)
{
CacheMode cacheMode = null;
if (value == "BitmapCache")
{
cacheMode = new BitmapCache();
}
else
{
throw new FormatException(SR.Parsers_IllegalToken);
}
return cacheMode;
}
/// <summary>
/// Can serialze "this" to a string
/// </summary>
internal virtual bool CanSerializeToString()
{
return false;
}
internal virtual string ConvertToString(string format, IFormatProvider provider)
{
return base.ToString();
}
}
}
|