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

Diff of /dgee/cslib/System/Web/Services/WebMethodAttribute.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 19:00:04 2003 UTC
# Line 32  namespace System.Web.Services Line 32  namespace System.Web.Services
32    {    {
33      private String descText;      private String descText;
34      private String method;      private String method;
35            private bool   sessionEnabled;
36            
37      public WebMethodAttribute()      public WebMethodAttribute()
38      {      {
39              this.sessionEnabled = false;
40      }      }
41            
42      public WebMethodAttribute( String method )      public WebMethodAttribute( String method )
43      {      {
44        this.method = method;        this.method         = method;
45              this.sessionEnabled = false;
46      }      }
47    
48      public String Description      public String Description
49      {      {
50        get {        get { return descText;  }
51          return descText;          set { descText = value; }
52        }      }
53        set {  
54          descText = value;      public  bool EnableSession
55        }      {
56          get { return sessionEnabled;  }
57          set { sessionEnabled = value; }
58      }      }
59    
60      public String Method      public String Method

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