| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // System.Net.Authorization.cs
- //
- // Author:
- // Miguel de Icaza ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Net {
- public class Authorization {
- string token;
- bool complete;
-
- public Authorization (string token)
- {
- this.complete = true;
- this.token = token;
- }
- public Authorization (string token, bool complete)
- {
- this.complete = complete;
- this.token = token;
- }
- public bool Complete {
- get {
- return complete;
- }
- }
-
- }
- }
|