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

Diff of /dgee/cslib/System/Web/Services/Protocols/HttpMethodAttribute.cs

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

revision 1.1 by npg, Mon Jul 7 16:23:51 2003 UTC revision 1.2 by csmith, Sun Sep 21 10:55:48 2003 UTC
# Line 0  Line 1 
1    namespace System.Web.Services.Protocols
2    {
3            using System;
4    
5            [AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=false)]
6            public class HttpMethodAttribute : Attribute
7            {
8                    protected String methodName;
9                    
10                    public HttpMethodAttribute(string m)
11                            {
12                                    methodName = m;
13                            }
14                    
15                    public String Method
16                            {
17                                    get
18                                    {
19                                            return methodName;
20                                    }
21                            }
22                    
23            }
24    
25    }

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

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