Removing old build files. NAnt doesn't use them.
[mono.git] / mcs / class / System / System.Net / Authorization.cs
1 //
2 // System.Net.Authorization.cs
3 //
4 // Author:
5 //   Miguel de Icaza (miguel@ximian.com)
6 //
7 // (C) Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.Net {
11
12         public class Authorization {
13                 string token;
14                 bool complete;
15                 
16                 public Authorization (string token)
17                 {
18                         this.complete = true;
19                         this.token = token;
20                 }
21
22                 public Authorization (string token, bool complete)
23                 {
24                         this.complete = complete;
25                         this.token = token;
26                 }
27
28                 public bool Complete {
29                         get {
30                                 return complete;
31                         }
32                 }
33
34                 
35         }
36 }