Class AddCanDataErrorEventArgs
Represents an Event raised when there has been an error adding CAN data to a Session
Inheritance
System.Object
    AddCanDataErrorEventArgs
  Namespace: MESL.SqlRace.Domain
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class AddCanDataErrorEventArgs : EventArgs
  Constructors
AddCanDataErrorEventArgs()
Declaration
public AddCanDataErrorEventArgs()
  Properties
BusId
Gets or sets the bus ID being written to when the error occurred.
Declaration
public ushort BusId { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.UInt16 | The bus identifier.  | 
      
ChannelDataSource
Gets or sets the channel data source.
Declaration
public ChannelDataSourceType ChannelDataSource { get; set; }
  Property Value
| Type | Description | 
|---|---|
| ChannelDataSourceType | The channel data source.  | 
      
Message
Gets or sets the event message.
Declaration
public string Message { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.String | The message.  | 
      
SessionKey
Gets or sets the session key representing the affected Session.
Declaration
public SessionKey SessionKey { get; set; }
  Property Value
| Type | Description | 
|---|---|
| MAT.OCS.Core.SessionKey | The session key.  | 
      
See Also
System.EventArgs