In corlib/System.Runtime.InteropServices:
[mono.git] / mcs / class / FirebirdSql.Data.Firebird / FirebirdSql.Data.Common / EventParameterBuffer.cs
index 2107299cbec21c30f775b70862e9d9dbb095f45f..0161ce18cb9f1d9d3078946ec694437a01e36619 100644 (file)
@@ -1,51 +1,51 @@
-/*\r
- *  Firebird ADO.NET Data provider for .NET and Mono \r
- * \r
- *     The contents of this file are subject to the Initial \r
- *     Developer's Public License Version 1.0 (the "License"); \r
- *     you may not use this file except in compliance with the \r
- *     License. You may obtain a copy of the License at \r
- *     http://www.firebirdsql.org/index.php?op=doc&id=idpl\r
- *\r
- *     Software distributed under the License is distributed on \r
- *     an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either \r
- *     express or implied.  See the License for the specific \r
- *     language governing rights and limitations under the License.\r
- * \r
- *  Copyright (c) 2002, 2005 Carlos Guzman Alvarez\r
- *  All Rights Reserved.\r
- */\r
-\r
-using System;\r
-using System.IO;\r
-using System.Text;\r
-\r
-namespace FirebirdSql.Data.Common\r
-{\r
-       internal sealed class EventParameterBuffer : ParameterBuffer\r
-       {\r
-               #region Constructors\r
-\r
-               public EventParameterBuffer() : base(true)\r
-               {\r
-               }\r
-\r
-               #endregion\r
-\r
-               #region Methods\r
-\r
-               public void Append(string content, int actualCount)\r
-               {\r
-                       this.Append(Encoding.Default.GetBytes(content), actualCount);\r
-               }\r
-\r
-               public void Append(byte[] content, int actualCount)\r
-               {\r
-                       this.WriteByte(content.Length);\r
-                       this.Write(content);\r
-                       this.Write(actualCount);\r
-               }\r
-\r
-               #endregion\r
-       }\r
+/*
+ *  Firebird ADO.NET Data provider for .NET and Mono 
+ * 
+ *     The contents of this file are subject to the Initial 
+ *     Developer's Public License Version 1.0 (the "License"); 
+ *     you may not use this file except in compliance with the 
+ *     License. You may obtain a copy of the License at 
+ *     http://www.firebirdsql.org/index.php?op=doc&id=idpl
+ *
+ *     Software distributed under the License is distributed on 
+ *     an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either 
+ *     express or implied.  See the License for the specific 
+ *     language governing rights and limitations under the License.
+ * 
+ *  Copyright (c) 2002, 2005 Carlos Guzman Alvarez
+ *  All Rights Reserved.
+ */
+
+using System;
+using System.IO;
+using System.Text;
+
+namespace FirebirdSql.Data.Common
+{
+       internal sealed class EventParameterBuffer : ParameterBuffer
+       {
+               #region Constructors
+
+               public EventParameterBuffer() : base(true)
+               {
+               }
+
+               #endregion
+
+               #region Methods
+
+               public void Append(string content, int actualCount)
+               {
+                       this.Append(Encoding.Default.GetBytes(content), actualCount);
+               }
+
+               public void Append(byte[] content, int actualCount)
+               {
+                       this.WriteByte(content.Length);
+                       this.Write(content);
+                       this.Write(actualCount);
+               }
+
+               #endregion
+       }
 }
\ No newline at end of file