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
type
HtmlRenderErrorTypethe type of error to report
message
stringthe error message
exception
Exceptionoptional: 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()