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