Преглед изворни кода

* SqlConnection.cs: Added MonoTODO appropriately.

svn path=/trunk/mcs/; revision=86519
Nagappan Alagappan пре 18 година
родитељ
комит
38ed697ceb

+ 4 - 0
mcs/class/System.Data/System.Data.SqlClient/ChangeLog

@@ -1,3 +1,7 @@
+2007-09-27  Nagappan A <[email protected]> 
+
+	* SqlConnection.cs: Added MonoTODO appropriately.
+
 2007-09-26  Nagappan A <[email protected]> 
 
 	* SqlCommandBuilder.cs: Code alignment.

+ 1 - 1
mcs/class/System.Data/System.Data.SqlClient/SqlConnection.cs

@@ -132,13 +132,13 @@ namespace System.Data.SqlClient {
 		[EditorAttribute ("Microsoft.VSDesigner.Data.SQL.Design.SqlConnectionStringEditor, "+ Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+ Consts.AssemblySystem_Drawing )]
 		[RecommendedAsConfigurable (true)]
 		[RefreshProperties (RefreshProperties.All)]
-		[MonoTODO("persist security info, encrypt, enlist keyword not implemented")]
 		public 
 #if NET_2_0
 		override
 #endif // NET_2_0
 		string ConnectionString {
 			get { return connectionString; }
+			[MonoTODO("persist security info, encrypt, enlist keyword not implemented")]
 			set {
 				if (state == ConnectionState.Open)
 					throw new InvalidOperationException ("Not Allowed to change ConnectionString property while Connection state is OPEN");