Public Access
10 lines
356 B
C#
10 lines
356 B
C#
namespace MeetingAssistant.Screenshots;
|
|
|
|
public sealed class UnavailableActiveWindowScreenshotCapture : IActiveWindowScreenshotCapture
|
|
{
|
|
public Task<ActiveWindowScreenshot> CaptureAsync(CancellationToken cancellationToken)
|
|
{
|
|
throw new PlatformNotSupportedException("Active-window screenshot capture is only available on Windows.");
|
|
}
|
|
}
|