DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Protected Member Functions | Properties | List of all members
Deveel.Data.Diagnostics.InformationEvent Class Reference
Inheritance diagram for Deveel.Data.Diagnostics.InformationEvent:
Deveel.Data.Diagnostics.Event Deveel.Data.Diagnostics.IEvent

Public Member Functions

 InformationEvent (string message, InformationLevel level)
 

Protected Member Functions

override void GetEventData (Dictionary< string, object > data)
 
- Protected Member Functions inherited from Deveel.Data.Diagnostics.Event
 Event ()
 
 Event (DateTimeOffset timeStamp)
 
virtual IEventSource OnSourceGet (IEventSource eventSource)
 
virtual IEventSource OnSourceSet (IEventSource eventSource)
 

Properties

string Message [get, private set]
 
InformationLevel Level [get, private set]
 
- Properties inherited from Deveel.Data.Diagnostics.Event
IEventSource EventSource [get, set]
 
DateTimeOffset TimeStamp [get, private set]
 
IDictionary< string, object > IEvent. EventData [get]
 
- Properties inherited from Deveel.Data.Diagnostics.IEvent
IEventSource EventSource [get, set]
 Gets the event source. More...
 
DateTimeOffset TimeStamp [get]
 
IDictionary< string, object > EventData [get]
 Gets additional event data that come with the event. More...
 

Detailed Description

Definition at line 5 of file InformationEvent.cs.

Constructor & Destructor Documentation

Deveel.Data.Diagnostics.InformationEvent.InformationEvent ( string  message,
InformationLevel  level 
)
inline

Definition at line 6 of file InformationEvent.cs.

6  {
7  Message = message;
8  Level = level;
9  }

Member Function Documentation

override void Deveel.Data.Diagnostics.InformationEvent.GetEventData ( Dictionary< string, object >  data)
inlineprotectedvirtual

Reimplemented from Deveel.Data.Diagnostics.Event.

Definition at line 15 of file InformationEvent.cs.

15  {
16  data["info.message"] = Message;
17  data["info.level"] = Level;
18  }

Property Documentation

InformationLevel Deveel.Data.Diagnostics.InformationEvent.Level
getprivate set

Definition at line 13 of file InformationEvent.cs.

string Deveel.Data.Diagnostics.InformationEvent.Message
getprivate set

Definition at line 11 of file InformationEvent.cs.


The documentation for this class was generated from the following file: