2 types derived from CacheMode
PresentationCore (2)
Core\CSharp\System\Windows\Media\BitmapCache.cs (1)
10
public partial class BitmapCache :
CacheMode
Core\CSharp\System\Windows\Media\Generated\BitmapCache.cs (1)
51
sealed partial class BitmapCache :
CacheMode
37 references to CacheMode
PresentationCore (37)
Core\CSharp\System\Windows\Media\CacheMode.cs (2)
30
internal static
CacheMode
Parse(string value)
32
CacheMode
cacheMode = null;
Core\CSharp\System\Windows\Media\ContainerVisual.cs (1)
94
public
CacheMode
CacheMode
Core\CSharp\System\Windows\Media\Converters\Generated\CacheModeValueSerializer.cs (7)
66
if (!(value is
CacheMode
))
71
CacheMode
instance = (
CacheMode
) value;
86
return
CacheMode
.Parse(value );
100
if (value is
CacheMode
)
102
CacheMode
instance = (
CacheMode
) value;
Core\CSharp\System\Windows\Media\Generated\CacheMode.cs (4)
66
public new
CacheMode
Clone()
68
return (
CacheMode
)base.Clone();
75
public new
CacheMode
CloneCurrentValue()
77
return (
CacheMode
)base.CloneCurrentValue();
Core\CSharp\System\Windows\Media\Generated\CacheModeConverter.cs (7)
84
if (!(context.Instance is
CacheMode
))
89
CacheMode
value = (
CacheMode
)context.Instance;
125
return
CacheMode
.Parse(source);
147
if (destinationType != null && value is
CacheMode
)
149
CacheMode
instance = (
CacheMode
)value;
Core\CSharp\System\Windows\Media\Visual.cs (7)
798
CacheMode
cacheMode = CacheModeField.GetValue(this);
1496
CacheMode
cacheMode = CacheModeField.GetValue(this);
3376
protected internal
CacheMode
VisualCacheMode
3388
CacheMode
cacheMode = CacheModeField.GetValue(this);
3394
CacheMode
newCacheMode = value;
5415
private static readonly UncommonField<
CacheMode
> CacheModeField = new UncommonField<
CacheMode
>();
Core\CSharp\System\Windows\Media\VisualTreeHelper.cs (1)
436
public static
CacheMode
GetCacheMode(Visual reference)
Core\CSharp\System\Windows\Media3D\Viewport2DVisual3D.cs (5)
747
typeof(
CacheMode
),
752
public
CacheMode
CacheMode
754
get { return (
CacheMode
)GetValue(CacheModeProperty); }
762
BitmapCache oldValue = (
CacheMode
)e.OldValue as BitmapCache;
763
BitmapCache newValue = (
CacheMode
)e.NewValue as BitmapCache;
Core\CSharp\System\Windows\UIElement.cs (3)
2914
typeof(
CacheMode
),
2928
public
CacheMode
CacheMode
2930
get { return (
CacheMode
) GetValue(CacheModeProperty); }