2 overrides of Decoder
PresentationCore (2)
System\Windows\Media\Imaging\BitmapFrameDecode.cs (1)
221
public override BitmapDecoder
Decoder
System\Windows\Media\Imaging\BitmapFrameEncode.cs (1)
122
public override BitmapDecoder
Decoder
25 references to Decoder
PresentationFramework (9)
MS\Internal\AppModel\IconHelper.cs (4)
103
if (bf?.
Decoder
?.Frames != null)
105
bf = GetBestMatch(bf.
Decoder
.Frames, size);
111
asGoodAsItGets = bf.
Decoder
is IconBitmapDecoder // i.e. was this a .ico?
447
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;
System\Windows\Documents\WpfPayload.cs (4)
634
imageBitmap1.
Decoder
.Frames.Count == 1 && imageBitmap2.
Decoder
.Frames.Count == 1 &&
635
imageBitmap1.
Decoder
.Frames[0] == imageBitmap2.
Decoder
.Frames[0])
System\Windows\Standard\Utilities.cs (1)
149
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;
ReachFramework (10)
Serialization\ImageSourceTypeConverter.cs (4)
232
bitmapFrame.
Decoder
!= null
235
BitmapDecoder decoder = bitmapFrame.
Decoder
;
454
bitmapFrame.
Decoder
!= null)
456
String sourceUri = bitmapFrame.
Decoder
.ToString();
Serialization\VisualTreeFlattener.cs (2)
81
if (bmpd.
Decoder
!= null)
83
codec = bmpd.
Decoder
.CodecInfo;
Serialization\XpsImageSerializationService.cs (4)
59
if (bitmapImage != null && bitmapImage.
Decoder
!= null)
60
codecInfo = bitmapImage.
Decoder
.CodecInfo;
126
if (bitmapFrame != null && bitmapFrame.
Decoder
!= null)
128
codecInfo = bitmapFrame.
Decoder
.CodecInfo;
System.Windows.Controls.Ribbon (6)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonWindowSmallIconConverter.cs (6)
63
if (bf != null && bf.
Decoder
!= null && bf.
Decoder
.Frames != null && bf.
Decoder
.Frames.Count > 0)
65
bf = GetBestMatch(bf.
Decoder
.Frames, size);
71
asGoodAsItGets = bf.
Decoder
is IconBitmapDecoder // i.e. was this a .ico?
98
bool isBitmapIconDecoder = frames[0].
Decoder
is IconBitmapDecoder;