2 overrides of Decoder
PresentationCore (2)
System\Windows\Media\Imaging\BitmapFrameDecode.cs (1)
200
public override BitmapDecoder
Decoder
System\Windows\Media\Imaging\BitmapFrameEncode.cs (1)
106
public override BitmapDecoder
Decoder
25 references to Decoder
PresentationFramework (9)
MS\Internal\AppModel\IconHelper.cs (4)
94
if (bf?.
Decoder
?.Frames != null)
96
bf = GetBestMatch(bf.
Decoder
.Frames, size);
102
asGoodAsItGets = bf.
Decoder
is IconBitmapDecoder // i.e. was this a .ico?
442
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;
System\Windows\Documents\WpfPayload.cs (4)
629
imageBitmap1.
Decoder
.Frames.Count == 1 && imageBitmap2.
Decoder
.Frames.Count == 1 &&
630
imageBitmap1.
Decoder
.Frames[0] == imageBitmap2.
Decoder
.Frames[0])
System\Windows\Standard\Utilities.cs (1)
139
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;
ReachFramework (10)
Serialization\ImageSourceTypeConverter.cs (4)
223
bitmapFrame.
Decoder
!= null
226
BitmapDecoder decoder = bitmapFrame.
Decoder
;
445
bitmapFrame.
Decoder
!= null)
447
String sourceUri = bitmapFrame.
Decoder
.ToString();
Serialization\VisualTreeFlattener.cs (2)
73
if (bmpd.
Decoder
!= null)
75
codec = bmpd.
Decoder
.CodecInfo;
Serialization\XpsImageSerializationService.cs (4)
55
if (bitmapImage != null && bitmapImage.
Decoder
!= null)
56
codecInfo = bitmapImage.
Decoder
.CodecInfo;
122
if (bitmapFrame != null && bitmapFrame.
Decoder
!= null)
124
codecInfo = bitmapFrame.
Decoder
.CodecInfo;
System.Windows.Controls.Ribbon (6)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonWindowSmallIconConverter.cs (6)
60
if (bf != null && bf.
Decoder
!= null && bf.
Decoder
.Frames != null && bf.
Decoder
.Frames.Count > 0)
62
bf = GetBestMatch(bf.
Decoder
.Frames, size);
68
asGoodAsItGets = bf.
Decoder
is IconBitmapDecoder // i.e. was this a .ico?
95
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;