This repository has been archived on 2025-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
xerobrowser/packages/CefSharp.Common.113.3.50/src/CefSharp/JavascriptStackFrame.cs
2023-06-07 22:24:57 +12:00

45 lines
1.2 KiB
C#

// Copyright © 2018 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp
{
/// <summary>
/// A Javascript(V8) stack frame
/// </summary>
/// TODO: Refactor to pass params in throw constructor and make properties readonly
public class JavascriptStackFrame
{
/// <summary>
/// Gets or sets the name of the function.
/// </summary>
/// <value>
/// The name of the function.
/// </value>
public string FunctionName { get; set; }
/// <summary>
/// Gets or sets the line number.
/// </summary>
/// <value>
/// The line number.
/// </value>
public int LineNumber { get; set; }
/// <summary>
/// Gets or sets the column number.
/// </summary>
/// <value>
/// The column number.
/// </value>
public int ColumnNumber { get; set; }
/// <summary>
/// Gets or sets the name of the source.
/// </summary>
/// <value>
/// The name of the source.
/// </value>
public string SourceName { get; set; }
}
}