using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.RemoteDesktop { /// /// Represents a screen capture method. /// /// public interface ICaptureMethod : IDisposable { /// /// Gets the desktop bitmap. /// /// The capture region. /// Bitmap GetDesktopBitmap(CaptureRegion region); } }