disable broken tests on net_4_0
[mcs.git] / class / Npgsql / Npgsql / NpgsqlSync.cs
blobe8c4e0b3af4bad2b4a5001d7647758eadb0a97b3
1 // created on 1/7/2003 at 20:58
3 // Npgsql.NpgsqlSync.cs
4 //
5 // Author:
6 // Francisco Jr. (fxjrlists@yahoo.com.br)
7 //
8 // Copyright (C) 2002 The Npgsql Development Team
9 // npgsql-general@gborg.postgresql.org
10 // http://gborg.postgresql.org/project/npgsql/projdisplay.php
12 // This library is free software; you can redistribute it and/or
13 // modify it under the terms of the GNU Lesser General Public
14 // License as published by the Free Software Foundation; either
15 // version 2.1 of the License, or (at your option) any later version.
17 // This library is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 // Lesser General Public License for more details.
22 // You should have received a copy of the GNU Lesser General Public
23 // License along with this library; if not, write to the Free Software
24 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 using System;
27 using System.IO;
28 using System.Text;
30 namespace Npgsql
33 /// <summary>
34 /// This class represents the Parse message sent to PostgreSQL
35 /// server.
36 /// </summary>
37 ///
38 internal sealed class NpgsqlSync
40 // Logging related values
41 private static readonly String CLASSNAME = "NpgsqlSync";
43 public void WriteToStream(Stream outputStream, Encoding encoding)
45 outputStream.WriteByte((Byte)'S');
47 PGUtil.WriteInt32(outputStream, 4);