CefPrintJobCallback.cs 579 B

12345678910111213141516171819202122
  1. namespace Xilium.CefGlue
  2. {
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Diagnostics;
  6. using System.Runtime.InteropServices;
  7. using Xilium.CefGlue.Interop;
  8. /// <summary>
  9. /// Callback interface for asynchronous continuation of print job requests.
  10. /// </summary>
  11. public sealed unsafe partial class CefPrintJobCallback
  12. {
  13. /// <summary>
  14. /// Indicate completion of the print job.
  15. /// </summary>
  16. public void Continue()
  17. {
  18. cef_print_job_callback_t.cont(_self);
  19. }
  20. }
  21. }