C# Class net.r_eg.IeXod.Framework.BuildErrorEventArgs

Inheritance: net.r_eg.IeXod.Framework.LazyFormattedBuildEventArgs
显示文件 Open project: 3F/IeXod Class Usage Examples

Public Methods

Method Description
BuildErrorEventArgs ( string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName ) : System

This constructor allows all event data to be initialized

BuildErrorEventArgs ( string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, DateTime eventTimestamp ) : System

This constructor which allows a timestamp to be set

Protected Methods

Method Description
BuildErrorEventArgs ( ) : System

Default constructor

Method Details

BuildErrorEventArgs() protected method

Default constructor
protected BuildErrorEventArgs ( ) : System
return System

BuildErrorEventArgs() public method

This constructor allows all event data to be initialized
public BuildErrorEventArgs ( string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName ) : System
subcategory string event sub-category
code string event code
file string file associated with the event
lineNumber int line number (0 if not applicable)
columnNumber int column number (0 if not applicable)
endLineNumber int end line number (0 if not applicable)
endColumnNumber int end column number (0 if not applicable)
message string text message
helpKeyword string help keyword
senderName string name of event sender
return System

BuildErrorEventArgs() public method

This constructor which allows a timestamp to be set
public BuildErrorEventArgs ( string subcategory, string code, string file, int lineNumber, int columnNumber, int endLineNumber, int endColumnNumber, string message, string helpKeyword, string senderName, DateTime eventTimestamp ) : System
subcategory string event sub-category
code string event code
file string file associated with the event
lineNumber int line number (0 if not applicable)
columnNumber int column number (0 if not applicable)
endLineNumber int end line number (0 if not applicable)
endColumnNumber int end column number (0 if not applicable)
message string text message
helpKeyword string help keyword
senderName string name of event sender
eventTimestamp DateTime Timestamp when event was created
return System