2 overrides of Decoder
PresentationCore (2)
System\Windows\Media\Imaging\BitmapFrameDecode.cs (1)
206
public override BitmapDecoder
Decoder
System\Windows\Media\Imaging\BitmapFrameEncode.cs (1)
107
public override BitmapDecoder
Decoder
25 references to Decoder
PresentationFramework (9)
MS\Internal\AppModel\IconHelper.cs (4)
95
if (bf?.
Decoder
?.Frames != null)
97
bf = GetBestMatch(bf.
Decoder
.Frames, size);
103
asGoodAsItGets = bf.
Decoder
is IconBitmapDecoder // i.e. was this a .ico?
439
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;
System\Windows\Documents\WpfPayload.cs (4)
628
imageBitmap1.
Decoder
.Frames.Count == 1 && imageBitmap2.
Decoder
.Frames.Count == 1 &&
629
imageBitmap1.
Decoder
.Frames[0] == imageBitmap2.
Decoder
.Frames[0])
System\Windows\Standard\Utilities.cs (1)
140
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;
ReachFramework (10)
Serialization\ImageSourceTypeConverter.cs (4)
224
bitmapFrame.
Decoder
!= null
227
BitmapDecoder decoder = bitmapFrame.
Decoder
;
446
bitmapFrame.
Decoder
!= null)
448
String sourceUri = bitmapFrame.
Decoder
.ToString();
Serialization\VisualTreeFlattener.cs (2)
74
if (bmpd.
Decoder
!= null)
76
codec = bmpd.
Decoder
.CodecInfo;
Serialization\XpsImageSerializationService.cs (4)
56
if (bitmapImage != null && bitmapImage.
Decoder
!= null)
57
codecInfo = bitmapImage.
Decoder
.CodecInfo;
123
if (bitmapFrame != null && bitmapFrame.
Decoder
!= null)
125
codecInfo = bitmapFrame.
Decoder
.CodecInfo;
System.Windows.Controls.Ribbon (6)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonWindowSmallIconConverter.cs (6)
61
if (bf != null && bf.
Decoder
!= null && bf.
Decoder
.Frames != null && bf.
Decoder
.Frames.Count > 0)
63
bf = GetBestMatch(bf.
Decoder
.Frames, size);
69
asGoodAsItGets = bf.
Decoder
is IconBitmapDecoder // i.e. was this a .ico?
96
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;