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

PgSqlInfoMessageEventArgs.cs « Mono.Data.PostgreSqlClient « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df69dff1d35c67015d3e73a20c0d9438714cb111 (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
43
44
45
46
47
48
49
50
51
//
// System.Data.SqlClient.SqlInfoMessageEventArgs.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//   Daniel Morgan (danmorg@sc.rr.com)
//
// (C) Ximian, Inc 2002
//

using System;
using System.Data;

namespace System.Data.SqlClient
{
	public sealed class SqlInfoMessageEventArgs : EventArgs
	{
		[MonoTODO]
		public SqlErrorCollection Errors {
			get { 
				throw new NotImplementedException (); 
			}
		}	

		[MonoTODO]
		public string Message 
		{
			get { 
				throw new NotImplementedException (); 
			}
		}	

		[MonoTODO]
		public string Source {
			get { 
				throw new NotImplementedException (); 
			}
		}

		[MonoTODO]
		public override string ToString() {
			// representation of InfoMessage event
			return "'ToString() for SqlInfoMessageEventArgs Not Implemented'";
		}

		//[MonoTODO]
		//~SqlInfoMessageEventArgs() {
			// FIXME: destructor needs to release resources
		//}
	}
}