2013-06-06 04:33:16 +00:00
|
|
|
namespace Exceptron.Client.Message
|
|
|
|
{
|
|
|
|
internal class Frame
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Order of current frame
|
|
|
|
/// </summary>
|
|
|
|
public int i { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Line number of the current frame
|
|
|
|
/// </summary>
|
|
|
|
public int ln { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Method name for current frame
|
|
|
|
/// </summary>
|
|
|
|
public string m { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Class name for current frame
|
|
|
|
/// </summary>
|
|
|
|
public string c { get; set; }
|
2013-06-09 02:19:26 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// File name for current frame
|
|
|
|
/// </summary>
|
|
|
|
public string fn { get; set; }
|
2013-06-06 04:33:16 +00:00
|
|
|
}
|
|
|
|
}
|