diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-01 01:30:14 +0200 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-03-01 01:30:14 +0200 |
| commit | fcbfe9a519b9d9d9850e57e08c6033d56ed98e17 (patch) | |
| tree | a6de78ad2819f748b020e7de0549bb64abb3aef3 /Software/Visual_Studio/Tango.ScreenCapture/IScreenCaptureMethod.cs | |
| parent | eb5e79f5dc4983612b1716cf6e52323dc0da0ba6 (diff) | |
| download | Tango-fcbfe9a519b9d9d9850e57e08c6033d56ed98e17.tar.gz Tango-fcbfe9a519b9d9d9850e57e08c6033d56ed98e17.zip | |
Working on Tango.ScreenCapture/RemoteDesktop.
Diffstat (limited to 'Software/Visual_Studio/Tango.ScreenCapture/IScreenCaptureMethod.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.ScreenCapture/IScreenCaptureMethod.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.ScreenCapture/IScreenCaptureMethod.cs b/Software/Visual_Studio/Tango.ScreenCapture/IScreenCaptureMethod.cs new file mode 100644 index 000000000..868299ebe --- /dev/null +++ b/Software/Visual_Studio/Tango.ScreenCapture/IScreenCaptureMethod.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.ScreenCapture +{ + public interface IScreenCaptureMethod : IDisposable + { + Bitmap GetDesktopBitmap(CaptureRegion region); + } +} |
