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