Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Windows.Media.Imaging.BitmapImage.cs « PresentationCore « FPF « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e0796bb16e929652cd491e4557fcd978b6b3f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace System.Windows.Media.Imaging
{
	public  class BitmapImage  : System.Windows.Media.Imaging.BitmapSource
	{		public BitmapImage(){}
		public virtual void BeginInit(){throw new System.NotImplementedException();}
		public virtual void EndInit(){throw new System.NotImplementedException();}


		public System.IO.Stream StreamSource { set {  throw new System.NotImplementedException(); } }

		public override double Height => throw new NotImplementedException();

		public override double Width => throw new NotImplementedException();
	}
}