[Quantproject-developers] QuantDownloader/Downloader/Validate SospiciousDataRowEventArgs.cs,NONE,1.1
Brought to you by:
glauco_1
|
From: <gla...@us...> - 2003-12-12 00:19:28
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/Validate
In directory sc8-pr-cvs1:/tmp/cvs-serv5826/Downloader/Validate
Added Files:
SospiciousDataRowEventArgs.cs
Log Message:
Derived from EventArgs, contains the suspicious
DataRow for the SuspiciousDataRow event.
--- NEW FILE: SospiciousDataRowEventArgs.cs ---
using System;
using System.Data;
namespace QuantProject.Applications.Downloader.Validate
{
/// <summary>
/// EventArgs for the SuspiciousDataRow event
/// </summary>
public class SuspiciousDataRowEventArgs : EventArgs
{
private DataRow dataRow;
/// <summary>
/// The suspicious DataRow
/// </summary>
public DataRow DataRow
{
get
{
return this.dataRow;
}
set
{
value = this.dataRow;
}
}
public SuspiciousDataRowEventArgs( DataRow dataRow )
{
this.dataRow = dataRow;
}
}
}
|