Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

JavascriptStackFrame.cs 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Copyright © 2018 The CefSharp Authors. All rights reserved.
  2. //
  3. // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
  4. namespace CefSharp
  5. {
  6. /// <summary>
  7. /// A Javascript(V8) stack frame
  8. /// </summary>
  9. /// TODO: Refactor to pass params in throw constructor and make properties readonly
  10. public class JavascriptStackFrame
  11. {
  12. /// <summary>
  13. /// Gets or sets the name of the function.
  14. /// </summary>
  15. /// <value>
  16. /// The name of the function.
  17. /// </value>
  18. public string FunctionName { get; set; }
  19. /// <summary>
  20. /// Gets or sets the line number.
  21. /// </summary>
  22. /// <value>
  23. /// The line number.
  24. /// </value>
  25. public int LineNumber { get; set; }
  26. /// <summary>
  27. /// Gets or sets the column number.
  28. /// </summary>
  29. /// <value>
  30. /// The column number.
  31. /// </value>
  32. public int ColumnNumber { get; set; }
  33. /// <summary>
  34. /// Gets or sets the name of the source.
  35. /// </summary>
  36. /// <value>
  37. /// The name of the source.
  38. /// </value>
  39. public string SourceName { get; set; }
  40. }
  41. }