Class HtmlRenderErrorEventArgs
- Namespace
- TheArtOfDev.HtmlRenderer.Core.Entities
- Assembly
- StockSharp.Xaml.dll
Raised when an error occurred during html rendering.
public sealed class HtmlRenderErrorEventArgs : EventArgs- Inheritance
- 
      
      
      HtmlRenderErrorEventArgs
- Inherited Members
- Extension Methods
Constructors
HtmlRenderErrorEventArgs(HtmlRenderErrorType, string, Exception)
Init.
public HtmlRenderErrorEventArgs(HtmlRenderErrorType type, string message, Exception exception = null)Parameters
- typeHtmlRenderErrorType
- the type of error to report 
- messagestring
- the error message 
- exceptionException
- optional: the exception that occurred 
Properties
Exception
the exception that occurred (can be null)
public Exception Exception { get; }Property Value
Message
the error message
public string Message { get; }Property Value
Type
error type that is reported
public HtmlRenderErrorType Type { get; }Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()