8 references to GetCustomAttributes
System.Web.Services (8)
System\Web\Services\Protocols\HttpClientProtocol.cs (1)
39
object[] attributes = methodInfo.
GetCustomAttributes
(typeof(HttpMethodAttribute));
System\Web\Services\Protocols\LogicalMethodInfo.cs (1)
343
object[] attrs =
GetCustomAttributes
(type);
System\Web\Services\Protocols\SoapReflector.cs (6)
177
object[] rpcMethodAttributes = methodInfo.
GetCustomAttributes
(typeof(SoapRpcMethodAttribute));
178
object[] docMethodAttributes = methodInfo.
GetCustomAttributes
(typeof(SoapDocumentMethodAttribute));
213
object[] attrs = method.
GetCustomAttributes
(typeof(SoapDocumentMethodAttribute));
215
attrs = method.
GetCustomAttributes
(typeof(SoapRpcMethodAttribute));
435
SoapExtensionAttribute[] extensionAttributes = (SoapExtensionAttribute[])methodInfo.
GetCustomAttributes
(typeof(SoapExtensionAttribute));
441
SoapHeaderAttribute[] headerAttributes = (SoapHeaderAttribute[])methodInfo.
GetCustomAttributes
(typeof(SoapHeaderAttribute));