**** Merged from MCS ****
[mono-project.git] / mcs / class / Mono.Data.TdsClient / Mono.Data.TdsClient / TdsError.cs
blob540070a70bb8a823843c8a459e008db90c9fc4a1
1 //
2 // Mono.Data.TdsClient.TdsError.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) 2002 Tim Coleman
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 using Mono.Data.Tds.Protocol;
32 using System;
34 namespace Mono.Data.TdsClient {
35 public sealed class TdsError
37 #region Fields
39 byte theClass = 0x0;
40 int lineNumber;
41 string message;
42 int number;
43 string procedure;
44 string server;
45 string source;
46 byte state;
48 #endregion // Fields
50 #region Constructors
52 internal TdsError (byte theClass, int lineNumber, string message, int number, string procedure, string server, string source, byte state)
54 this.theClass = theClass;
55 this.lineNumber = lineNumber;
56 this.message = message;
57 this.number = number;
58 this.procedure = procedure;
59 this.server = server;
60 this.source = source;
61 this.state = state;
64 #endregion // Constructors
66 #region Properties
68 public byte Class {
69 get { return theClass; }
72 public int LineNumber {
73 get { return lineNumber; }
76 public string Message {
77 get { return message; }
80 public int Number {
81 get { return number; }
84 public string Procedure {
85 get { return procedure; }
88 public string Server {
89 get { return server; }
92 public string Source {
93 get { return source; }
96 public byte State {
97 get { return state; }
100 #endregion // Properties
102 #region Methods
104 [MonoTODO]
105 public override string ToString ()
107 throw new NotImplementedException ();
110 #endregion // Methods