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