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)
353
attribute = new
WebMethodAttribute
();
System\Web\Services\WebMethodAttribute.cs (1)
240
WebMethodAttribute attribute = new
WebMethodAttribute
(implAttribute.EnableSessionSpecified ? implAttribute.EnableSession : declAttribute.EnableSession);
35 references to WebMethodAttribute
System.Web.Extensions (4)
Script\Services\WebServiceData.cs (2)
190
object[] wmAttribs = method.GetCustomAttributes(typeof(
WebMethodAttribute
), true);
203
WebServiceMethodData wmd = new WebServiceMethodData(this, method, (
WebMethodAttribute
)wmAttribs[0], sm);
Script\Services\WebServiceMethodData.cs (2)
19
private
WebMethodAttribute
_webMethodAttribute;
26
internal WebServiceMethodData(WebServiceData owner, MethodInfo methodInfo,
WebMethodAttribute
webMethodAttribute, ScriptMethodAttribute scriptMethodAttribute) {
System.Web.Services (31)
System\Web\Services\Description\HttpProtocolReflector.cs (1)
117
WebMethodAttribute
methodAttribute = Method.MethodAttribute;
System\Web\Services\Description\ProtocolReflector.cs (2)
34
WebMethodAttribute
methodAttr;
174
public
WebMethodAttribute
MethodAttribute {
System\Web\Services\Description\ServiceDescriptionReflector.cs (1)
221
WebMethodAttribute
attribute = method.MethodAttribute;
System\Web\Services\Description\SoapProtocolImporter.cs (1)
747
EndMetadata(metadata, typeof(
WebMethodAttribute
), null);
System\Web\Services\Description\SoapProtocolReflector.cs (1)
66
WebMethodAttribute
methodAttr = Method.MethodAttribute;
System\Web\Services\Protocols\HttpServerProtocol.cs (1)
99
WebMethodAttribute
methodAttribute = method.methodInfo.MethodAttribute;
System\Web\Services\Protocols\LogicalMethodInfo.cs (4)
55
WebMethodAttribute
attribute;
348
internal
WebMethodAttribute
MethodAttribute {
351
attribute = (
WebMethodAttribute
)GetCustomAttribute(typeof(
WebMethodAttribute
));
System\Web\Services\Protocols\ServerProtocol.cs (2)
31
WebMethodAttribute
methodAttr;
101
internal
WebMethodAttribute
MethodAttribute {
System\Web\Services\Protocols\SoapReflector.cs (2)
305
WebMethodAttribute
webMethodAttribute = methodInfo.MethodAttribute;
569
WebMethodAttribute
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
'/>
215
internal static
WebMethodAttribute
GetAttribute(MethodInfo implementation, MethodInfo declaration) {
216
WebMethodAttribute
declAttribute = null;
217
WebMethodAttribute
implAttribute = null;
221
attrs = declaration.GetCustomAttributes(typeof(
WebMethodAttribute
), false);
223
declAttribute = (
WebMethodAttribute
)attrs[0];
226
attrs = implementation.GetCustomAttributes(typeof(
WebMethodAttribute
), false);
228
implAttribute = (
WebMethodAttribute
)attrs[0];
240
WebMethodAttribute
attribute = new WebMethodAttribute(implAttribute.EnableSessionSpecified ? implAttribute.EnableSession : declAttribute.EnableSession);
301
WebMethodAttribute
attribute = WebMethodReflector.GetAttribute(methods[i], declaration);
342
internal
WebMethodAttribute
attribute;
343
internal WebMethod(MethodInfo declaration, WebServiceBindingAttribute binding,
WebMethodAttribute
attribute) {