Show / Hide Table of Contents

Class CilErrorEventArgs

Represents data associated with Error event

Inheritance
System.Object
System.EventArgs
CilErrorEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: CilTools.BytecodeAnalysis
Assembly: CilTools.BytecodeAnalysis.dll
Syntax
public class CilErrorEventArgs : EventArgs

Constructors

CilErrorEventArgs(Exception, String)

Creates new CilErrorEventArgs object with specified Exception and error information

Declaration
public CilErrorEventArgs(Exception ex, string info)
Parameters
Type Name Description
System.Exception ex

Exception associated with this event

System.String info

Additional information associated with this event

Fields

_Exception

Exception associated with this event

Declaration
protected Exception _Exception
Field Value
Type Description
System.Exception

_Info

Additional information associated with this event

Declaration
protected string _Info
Field Value
Type Description
System.String

_Timestamp

A date and time when this event occured

Declaration
protected DateTime _Timestamp
Field Value
Type Description
System.DateTime

Properties

Exception

Gets exception associated with this event

Declaration
public Exception Exception { get; }
Property Value
Type Description
System.Exception

Info

Gets additional information associated with this event

Declaration
public string Info { get; }
Property Value
Type Description
System.String

Timestamp

Gets date and time when this event occured

Declaration
public DateTime Timestamp { get; }
Property Value
Type Description
System.DateTime
Back to top CIL Tools (published from sources in GitHub repository).
Generated by DocFX