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