Generated by DocFX

Class CommonEvent

Basic implementation of the Event interface.

Inheritance
System.Object
CommonEvent
ErrorEvent
InfoEvent
Implements
IEventInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: VEDriversLite.Events
Assembly: VEDriversLite.dll
Syntax
public abstract class CommonEvent : IEventInfo

Properties

| Improve this Doc View Source

Address

Address which created this event info

Declaration
public string Address { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Data

Related data

Declaration
public string Data { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Message

Message content

Declaration
public string Message { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Progress

Progress of the task which created the event

Declaration
public double Progress { get; set; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

TimeStamp

Time stamp of the situation

Declaration
public DateTime TimeStamp { get; set; }
Property Value
Type Description
System.DateTime
| Improve this Doc View Source

Title

Title of the event info

Declaration
public string Title { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

TxId

Related transaction

Declaration
public string TxId { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Type

Event type

Declaration
public EventType Type { get; set; }
Property Value
Type Description
EventType

Methods

| Improve this Doc View Source

Fill(IEventInfo)

Fill the dto

Declaration
public virtual void Fill(IEventInfo ev)
Parameters
Type Name Description
IEventInfo ev
| Improve this Doc View Source

ParseData<T>()

Parse the data of the event

Declaration
public async Task<T> ParseData<T>()
Returns
Type Description
System.Threading.Tasks.Task<T>
Type Parameters
Name Description
T

Implements

IEventInfo