1 instantiation of WebServiceBindingAttribute
System.Web.Services (1)
System\Web\Services\Description\ProtocolReflector.cs (1)
281reflectedBinding.bindingAttr = new WebServiceBindingAttribute();
27 references to WebServiceBindingAttribute
System.Web.Services (27)
System\Web\Services\Description\ProtocolReflector.cs (8)
260internal ReflectedBinding(WebServiceBindingAttribute bindingAttr) { 263public WebServiceBindingAttribute bindingAttr; 307object[] attrs = ServiceType.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); 309WebServiceBindingAttribute bindingAttribute = (WebServiceBindingAttribute)attrs[i]; 324object[] attrs = bindingInterface.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); 326WebServiceBindingAttribute bindingAttribute = (WebServiceBindingAttribute)attrs[i];
System\Web\Services\Description\SoapProtocolImporter.cs (1)
454CodeAttributeDeclaration attribute = new CodeAttributeDeclaration(typeof(WebServiceBindingAttribute).FullName);
System\Web\Services\Protocols\ClientProtocol.cs (1)
916WebServiceBindingAttribute binding = WebServiceBindingReflector.GetAttribute(type);
System\Web\Services\Protocols\LogicalMethodInfo.cs (2)
54WebServiceBindingAttribute binding; 198internal WebServiceBindingAttribute Binding {
System\Web\Services\Protocols\SoapClientProtocol.cs (2)
29WebServiceBindingAttribute binding; 138internal WebServiceBindingAttribute Binding {
System\Web\Services\Protocols\SoapReflector.cs (1)
90internal WebServiceBindingAttribute binding;
System\Web\Services\WebMethodAttribute.cs (5)
282WebServiceBindingAttribute binding = null; 285object[] attrs = declaration.DeclaringType.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); 289binding = (WebServiceBindingAttribute)attrs[0]; 341internal WebServiceBindingAttribute binding; 343internal WebMethod(MethodInfo declaration, WebServiceBindingAttribute binding, WebMethodAttribute attribute) {
System\Web\Services\WebServiceBindingAttribute.cs (7)
108internal static WebServiceBindingAttribute GetAttribute(Type type) { 110object[] attrs = type.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); 113return (WebServiceBindingAttribute)attrs[0]; 118internal static WebServiceBindingAttribute GetAttribute(LogicalMethodInfo methodInfo, string binding) { 125object[] attrs = type.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); 126WebServiceBindingAttribute webAttr = null; 127foreach (WebServiceBindingAttribute attr in attrs) {