10 references to DelayCreation
PresentationCore (10)
Core\CSharp\System\Windows\Media\Imaging\BitmapDecoder.cs (2)
1677else if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0 && _cacheOption == BitmapCacheOption.OnLoad) 1743_createOptions |= BitmapCreateOptions.DelayCreation;
Core\CSharp\System\Windows\Media\Imaging\BitmapFrameDecode.cs (2)
67if ((createOptions & BitmapCreateOptions.DelayCreation) != 0) 112if ((createOptions & BitmapCreateOptions.DelayCreation) != 0)
Core\CSharp\System\Windows\Media\Imaging\BitmapImage.cs (4)
370CreateOptions & ~BitmapCreateOptions.DelayCreation, 618CachedBitmap cachedSource = new CachedBitmap(source, CreateOptions & ~BitmapCreateOptions.DelayCreation, CacheOption); 718DelayCreation = ((options & BitmapCreateOptions.DelayCreation) != 0); 885if ((CreateOptions & BitmapCreateOptions.DelayCreation) != 0)
Core\CSharp\System\Windows\Media\Imaging\LateBoundBitmapDecoder.cs (2)
320_createOptions & ~BitmapCreateOptions.DelayCreation, 358if ((_createOptions & BitmapCreateOptions.DelayCreation) == 0)