Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SqlDataSourceStatusEventArgs.cs « System.Web.UI.WebControls « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d624b2fcf80a3b0964ea977591aa2399c024948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// System.Web.UI.WebControls.SqlDataSourceStatusEventArgs
//
// Authors:
//	Ben Maurer (bmaurer@users.sourceforge.net)
//
// (C) 2003 Ben Maurer
//

#if NET_2_0
using System.Collections;
using System.Collections.Specialized;
using System.Text;

namespace System.Web.UI.WebControls {
	public class SqlDataSourceStatusEventArgs : EventArgs {
		public SqlDataSourceStatusEventArgs (IOrderedDictionary outputParameters, object returnValue, int rowsAffected)
		{
			this.outputParameters = outputParameters;
			this.returnValue = returnValue;
			this.rowsAffected = rowsAffected;
		}
		
		IOrderedDictionary outputParameters;
		object returnValue;
		int rowsAffected;
		
		public IOrderedDictionary OutputParameters {
			get { return outputParameters; }
		}
		
		public object ReturnValue {
			get { return returnValue; }
		}
		
		public int RowsAffected {
			get { return rowsAffected; }
		}
	}
}
#endif