/[dgee]/dgee/cslib/System/Web/Services/WebService.cs
ViewVC logotype

Diff of /dgee/cslib/System/Web/Services/WebService.cs

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.2 by npg, Tue Jul 8 00:11:30 2003 UTC revision 1.1.2.3 by csmith, Sat Aug 30 20:06:55 2003 UTC
# Line 41  namespace System.Web.Services Line 41  namespace System.Web.Services
41    
42      public WebService()      public WebService()
43      {      {
44                    application = new HttpApplicationState();
45      }      }
46    
47      public HttpApplicationState Application      public HttpApplicationState Application
48      {      {
49        get {        get { return this.application; }
         return this.application;  
       }  
50      }      }
51        
52      public HttpContext Context      public HttpContext Context
53      {      {
54        get {        get { return this.context; }
         return this.context;  
       }  
55      }      }
56        
57      public HttpServerUtility Server      public HttpServerUtility Server
58      {      {
59        get {        get { return this.server; }
         return this.server;  
       }  
60      }      }
61        
62      public HttpSessionState Session      public HttpSessionState Session
63      {      {
64        get {        get { return this.session; }
         return this.session;  
       }  
65      }      }
66        
67      public IPrincipal User      public IPrincipal User
68      {      {
69        get {        get { return this.user; }
         return this.user;  
       }  
70      }        }  
71    }    }
72  }  }

Legend:
Removed from v.1.1.2.2  
changed lines
  Added in v.1.1.2.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26