11 instantiations of WebMethodAttribute
System.Web.Extensions (9)
Profile\ProfileService.cs (4)
131[WebMethod] 143[WebMethod] 155[WebMethod] 161[WebMethod]
Security\AuthenticationService.cs (3)
14[WebMethod] 29[WebMethod] 34[WebMethod]
Security\RoleService.cs (2)
15[WebMethod] 21[WebMethod]
System.Web.Services (2)
System\Web\Services\Protocols\LogicalMethodInfo.cs (1)
353attribute = new WebMethodAttribute();
System\Web\Services\WebMethodAttribute.cs (1)
240WebMethodAttribute attribute = new WebMethodAttribute(implAttribute.EnableSessionSpecified ? implAttribute.EnableSession : declAttribute.EnableSession);
35 references to WebMethodAttribute
System.Web.Extensions (4)
Script\Services\WebServiceData.cs (2)
190object[] wmAttribs = method.GetCustomAttributes(typeof(WebMethodAttribute), true); 203WebServiceMethodData wmd = new WebServiceMethodData(this, method, (WebMethodAttribute)wmAttribs[0], sm);
Script\Services\WebServiceMethodData.cs (2)
19private WebMethodAttribute _webMethodAttribute; 26internal WebServiceMethodData(WebServiceData owner, MethodInfo methodInfo, WebMethodAttribute webMethodAttribute, ScriptMethodAttribute scriptMethodAttribute) {
System.Web.Services (31)
System\Web\Services\Description\HttpProtocolReflector.cs (1)
117WebMethodAttribute methodAttribute = Method.MethodAttribute;
System\Web\Services\Description\ProtocolReflector.cs (2)
34WebMethodAttribute methodAttr; 174public WebMethodAttribute MethodAttribute {
System\Web\Services\Description\ServiceDescriptionReflector.cs (1)
221WebMethodAttribute attribute = method.MethodAttribute;
System\Web\Services\Description\SoapProtocolImporter.cs (1)
747EndMetadata(metadata, typeof(WebMethodAttribute), null);
System\Web\Services\Description\SoapProtocolReflector.cs (1)
66WebMethodAttribute methodAttr = Method.MethodAttribute;
System\Web\Services\Protocols\HttpServerProtocol.cs (1)
99WebMethodAttribute methodAttribute = method.methodInfo.MethodAttribute;
System\Web\Services\Protocols\LogicalMethodInfo.cs (4)
55WebMethodAttribute attribute; 348internal WebMethodAttribute MethodAttribute { 351attribute = (WebMethodAttribute)GetCustomAttribute(typeof(WebMethodAttribute));
System\Web\Services\Protocols\ServerProtocol.cs (2)
31WebMethodAttribute methodAttr; 101internal WebMethodAttribute MethodAttribute {
System\Web\Services\Protocols\SoapReflector.cs (2)
305WebMethodAttribute webMethodAttribute = methodInfo.MethodAttribute; 569WebMethodAttribute methodAttribute = methodInfo.MethodAttribute;
System\Web\Services\WebMethodAttribute.cs (16)
43/// <para>Initializes a new instance of the <see cref='System.Web.Services.WebMethodAttribute'/> 55/// <para>Initializes a new instance of the <see cref='System.Web.Services.WebMethodAttribute'/> 65/// <para>Initializes a new instance of the <see cref='System.Web.Services.WebMethodAttribute'/> 77/// <para>Initializes a new instance of the <see cref='System.Web.Services.WebMethodAttribute'/> 90/// <para>Initializes a new instance of the <see cref='System.Web.Services.WebMethodAttribute'/> 215internal static WebMethodAttribute GetAttribute(MethodInfo implementation, MethodInfo declaration) { 216WebMethodAttribute declAttribute = null; 217WebMethodAttribute implAttribute = null; 221attrs = declaration.GetCustomAttributes(typeof(WebMethodAttribute), false); 223declAttribute = (WebMethodAttribute)attrs[0]; 226attrs = implementation.GetCustomAttributes(typeof(WebMethodAttribute), false); 228implAttribute = (WebMethodAttribute)attrs[0]; 240WebMethodAttribute attribute = new WebMethodAttribute(implAttribute.EnableSessionSpecified ? implAttribute.EnableSession : declAttribute.EnableSession); 301WebMethodAttribute attribute = WebMethodReflector.GetAttribute(methods[i], declaration); 342internal WebMethodAttribute attribute; 343internal WebMethod(MethodInfo declaration, WebServiceBindingAttribute binding, WebMethodAttribute attribute) {