фикс не правильного результата асинхронного метода

This commit is contained in:
2025-02-06 15:34:38 +03:00
parent 44eab91463
commit 75fb2776ac
8 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ public class Printer : IPrinter
public async Task<TransmittedSharedObject<IPage>> Print(string text, CancellationToken cancellationToken = default)
{
throw new Exception("The method or operation is not implemented.");
// throw new Exception("The method or operation is not implemented.");
return new Page {Text = text};
}
}