Somehow missed this with earlier checkin of fluent interface.
[castle.git] / Tools / DynamicProxy / Castle.DynamicProxy.Tests / Classes / DummyReader.cs
blobbbc06e43b7671421771d78cd47f0bbc2d9197984
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle.DynamicProxy.Test.Classes
17 using System;
18 using System.Data;
21 public class DummyReader : IDataReader
23 public DummyReader()
27 public void Close()
29 throw new NotImplementedException();
32 public bool NextResult()
34 throw new NotImplementedException();
37 public bool Read()
39 throw new NotImplementedException();
42 public DataTable GetSchemaTable()
44 throw new NotImplementedException();
47 public int Depth
49 get { throw new NotImplementedException(); }
52 public bool IsClosed
54 get { throw new NotImplementedException(); }
57 public int RecordsAffected
59 get { throw new NotImplementedException(); }
62 public void Dispose()
64 throw new NotImplementedException();
67 public string GetName(int i)
69 throw new NotImplementedException();
72 public string GetDataTypeName(int i)
74 throw new NotImplementedException();
77 public Type GetFieldType(int i)
79 throw new NotImplementedException();
82 public object GetValue(int i)
84 throw new NotImplementedException();
87 public int GetValues(object[] values)
89 throw new NotImplementedException();
92 public int GetOrdinal(string name)
94 throw new NotImplementedException();
97 public bool GetBoolean(int i)
99 throw new NotImplementedException();
102 public byte GetByte(int i)
104 throw new NotImplementedException();
107 public long GetBytes(int i, long fieldOffset, byte[] buffer, int bufferoffset, int length)
109 throw new NotImplementedException();
112 public char GetChar(int i)
114 throw new NotImplementedException();
117 public long GetChars(int i, long fieldoffset, char[] buffer, int bufferoffset, int length)
119 throw new NotImplementedException();
122 public Guid GetGuid(int i)
124 throw new NotImplementedException();
127 public short GetInt16(int i)
129 throw new NotImplementedException();
132 public int GetInt32(int i)
134 throw new NotImplementedException();
137 public long GetInt64(int i)
139 throw new NotImplementedException();
142 public float GetFloat(int i)
144 throw new NotImplementedException();
147 public double GetDouble(int i)
149 throw new NotImplementedException();
152 public string GetString(int i)
154 throw new NotImplementedException();
157 public decimal GetDecimal(int i)
159 throw new NotImplementedException();
162 public DateTime GetDateTime(int i)
164 throw new NotImplementedException();
167 public IDataReader GetData(int i)
169 throw new NotImplementedException();
172 public bool IsDBNull(int i)
174 throw new NotImplementedException();
177 public int FieldCount
179 get { throw new NotImplementedException(); }
182 public object this[int i]
184 get { throw new NotImplementedException(); }
187 public object this[string name]
189 get { throw new NotImplementedException(); }