(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.Web.Services / System.Web.Services / WebService.cs
blobcc8017bab4c10d7fa9543b3dea375f110de56cfd
1 //
2 // System.Web.Services.WebService.cs
3 //
4 // Author:
5 // Tim Coleman (tim@timcoleman.com)
6 //
7 // Copyright (C) Tim Coleman, 2002
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 System.ComponentModel;
32 using System.Security.Principal;
33 using System.Web;
34 using System.Web.SessionState;
36 namespace System.Web.Services {
37 public class WebService : MarshalByValueComponent {
39 #region Fields
41 HttpContext _context;
43 #endregion // Fields
45 #region Constructors
47 public WebService ()
49 _context = HttpContext.Current;
52 #endregion // Constructors
54 #region Properties
56 [Browsable (false)]
57 [Description ("The ASP.NET application object for the current request.")]
58 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
59 public HttpApplicationState Application {
60 get { return _context.Application; }
63 [Browsable (false)]
64 [WebServicesDescription ("The ASP.NET context object for the current request.")]
65 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
66 public HttpContext Context {
67 get { return _context; }
70 [Browsable (false)]
71 [WebServicesDescription ("The ASP.NET utility object for the current request.")]
72 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
73 public HttpServerUtility Server {
74 get { return _context.Server; }
77 [Browsable (false)]
78 [WebServicesDescription ("The ASP.NET session object for the current request.")]
79 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
80 public HttpSessionState Session {
81 get { return _context.Session; }
84 [Browsable (false)]
85 [WebServicesDescription ("The ASP.NET user object for the current request. The object is used for authorization.")]
86 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
87 public IPrincipal User {
88 get { return _context.User; }
91 #if NET_2_0
92 [MonoTODO]
93 public virtual System.Web.Services.Protocols.SoapProtocolVersion SoapVersion {
94 get { throw new NotImplementedException (); }
96 #endif
98 #endregion // Properties