Class CommonEvent
Basic implementation of the Event interface.
Implements
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 SourceAddress
Address which created this event info
Declaration
public string Address { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Data
Related data
Declaration
public string Data { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Message
Message content
Declaration
public string Message { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Progress
Progress of the task which created the event
Declaration
public double Progress { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
TimeStamp
Time stamp of the situation
Declaration
public DateTime TimeStamp { get; set; }
Property Value
Type | Description |
---|---|
System.DateTime |
Title
Title of the event info
Declaration
public string Title { get; set; }
Property Value
Type | Description |
---|---|
System.String |
TxId
Related transaction
Declaration
public string TxId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Type
Event type
Declaration
public EventType Type { get; set; }
Property Value
Type | Description |
---|---|
EventType |
Methods
| Improve this Doc View SourceFill(IEventInfo)
Fill the dto
Declaration
public virtual void Fill(IEventInfo ev)
Parameters
Type | Name | Description |
---|---|---|
IEventInfo | ev |
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 |