2 overrides of Decoder
PresentationCore (2)
Core\CSharp\System\Windows\Media\Imaging\BitmapFrameDecode.cs (1)
234public override BitmapDecoder Decoder
Core\CSharp\System\Windows\Media\Imaging\BitmapFrameEncode.cs (1)
130public override BitmapDecoder Decoder
9 references to Decoder
PresentationFramework (9)
src\Framework\MS\Internal\AppModel\IconHelper.cs (4)
128if (bf?.Decoder?.Frames != null) 130bf = GetBestMatch(bf.Decoder.Frames, size); 136asGoodAsItGets = bf.Decoder is IconBitmapDecoder // i.e. was this a .ico? 482bool isBitmapIconDecoder = frames[0].Decoder is IconBitmapDecoder;
src\Framework\System\Windows\Documents\WpfPayload.cs (4)
670imageBitmap1.Decoder.Frames.Count == 1 && imageBitmap2.Decoder.Frames.Count == 1 && 671imageBitmap1.Decoder.Frames[0] == imageBitmap2.Decoder.Frames[0])
src\Framework\System\Windows\Standard\Utilities.cs (1)
152bool isBitmapIconDecoder = frames[0].Decoder is IconBitmapDecoder;