C# Class BridgeStack.OnEventLoggedArgs

Event log delegate arguments.
Inheritance: System.EventArgs, IEventLoggedArgs
Show file Open project: bevacqua/BridgeStack

Public Methods

Method Description
OnEventLoggedArgs ( string message ) : System

Default arguments constructor with a message to relay.

OnEventLoggedArgs ( string message, Exception e ) : System

Arguments constructor with a message and an exception to relay.

Method Details

OnEventLoggedArgs() public method

Default arguments constructor with a message to relay.
public OnEventLoggedArgs ( string message ) : System
message string The message to relay.
return System

OnEventLoggedArgs() public method

Arguments constructor with a message and an exception to relay.
public OnEventLoggedArgs ( string message, Exception e ) : System
message string The message to relay.
e System.Exception The exception to relay
return System