Skip to content

v4.0.8

Compare
Choose a tag to compare
@JonathanMagnan JonathanMagnan released this 19 Jul 15:05
· 9 commits to master since this release
b84f138

Download the library here

  • FIXED: Type in a property name in EvalException class added in v4.0.7
public class EvalException : Exception
{	
	/// <summary>Gets or sets the original code.</summary>
	/// <value>The original code.</value>
	public string OriginalCode { get; set; }

	/// <summary>Gets or sets the parsed code.</summary>
	/// <value>The parsed code.</value>
	public string ParsedCode { get; set; }

	/// <summary>Gets or sets the token.</summary>
	/// <value>The token.</value>
	public string Token { get; set; }

	/// <summary>Gets or sets the start position of the exception (from the parsed code).</summary>
	/// <value>The start position (from the parsed code).</value>
	public int StartPosition { get; set; }

	/// <summary>Gets or sets the near text (from the parsed code).</summary>
	/// <value>The near text (from the parsed code).</value>
	public string NearText { get; set; }
}

Trial unlocked until the end of August