[Quantproject-developers] QuantDownloader/Downloader/Validate SospiciousDataRowEventArgs.cs,1.1,1.2
Brought to you by:
glauco_1
|
From: <gla...@pr...> - 2004-01-26 13:28:33
|
Update of /cvsroot/quantproject/QuantDownloader/Downloader/Validate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20345/Downloader/Validate Modified Files: SospiciousDataRowEventArgs.cs Log Message: Added the ValidationWarning type specification Index: SospiciousDataRowEventArgs.cs =================================================================== RCS file: /cvsroot/quantproject/QuantDownloader/Downloader/Validate/SospiciousDataRowEventArgs.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SospiciousDataRowEventArgs.cs 12 Dec 2003 00:19:25 -0000 1.1 --- SospiciousDataRowEventArgs.cs 25 Jan 2004 15:40:00 -0000 1.2 *************** *** 10,13 **** --- 10,14 ---- { private DataRow dataRow; + private ValidationWarning validationWarning; /// <summary> *************** *** 26,33 **** } ! public SuspiciousDataRowEventArgs( DataRow dataRow ) ! { ! this.dataRow = dataRow; ! } ! } } --- 27,53 ---- } ! /// <summary> ! /// The suspicious DataRow ! /// </summary> ! public ValidationWarning ValidationWarning ! { ! get ! { ! return this.validationWarning; ! } ! set ! { ! value = this.validationWarning; ! } ! } ! public SuspiciousDataRowEventArgs( DataRow dataRow ) ! { ! this.dataRow = dataRow; ! } ! public SuspiciousDataRowEventArgs( DataRow dataRow , ValidationWarning validationWarning ) ! { ! this.dataRow = dataRow; ! this.validationWarning = validationWarning; ! } ! } } |