Remove some deprecated libraries
[mono.git] / mcs / class / FirebirdSql.Data.Firebird / FirebirdSql.Data.Common / ServiceParameterBuffer.cs
1 /*
2  *      Firebird ADO.NET Data provider for .NET and Mono 
3  * 
4  *         The contents of this file are subject to the Initial 
5  *         Developer's Public License Version 1.0 (the "License"); 
6  *         you may not use this file except in compliance with the 
7  *         License. You may obtain a copy of the License at 
8  *         http://www.firebirdsql.org/index.php?op=doc&id=idpl
9  *
10  *         Software distributed under the License is distributed on 
11  *         an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either 
12  *         express or implied. See the License for the specific 
13  *         language governing rights and limitations under the License.
14  * 
15  *      Copyright (c) 2002, 2005 Carlos Guzman Alvarez
16  *      All Rights Reserved.
17  */
18
19 using System;
20 using System.IO;
21 using System.Text;
22
23 namespace FirebirdSql.Data.Common
24 {
25         internal sealed class ServiceParameterBuffer : ParameterBuffer
26         {
27                 #region Constructors
28
29                 public ServiceParameterBuffer() : base(true)
30                 {
31                 }
32
33                 #endregion
34
35                 #region Methods
36
37                 public void Append(int type, byte value)
38                 {
39                         this.WriteByte(type);
40                         this.WriteByte(value);
41                 }
42
43                 public void Append(int type, int value)
44                 {
45                         this.WriteByte(type);
46                         this.Write(value);
47                 }
48
49                 public void Append(int type, string value)
50                 {
51                         this.Append(type, Encoding.Default.GetBytes(value));
52                 }
53
54                 public void Append(byte type, string value)
55                 {
56                         this.Append(type, Encoding.Default.GetBytes(value));
57                 }
58
59                 public void Append(int type, byte[] value)
60                 {
61                         this.WriteByte((byte)type);
62                         this.Write((short)value.Length);
63                         this.Write(value);
64                 }
65
66                 public void Append(byte type, byte[] value)
67                 {
68                         this.WriteByte(type);
69                         this.WriteByte((byte)value.Length);
70                         this.Write(value);
71                 }
72
73                 #endregion
74         }
75 }