1 write to binding
System.Web.Services (1)
System\Web\Services\Protocols\SoapReflector.cs (1)
302soapMethod.binding = WebServiceBindingReflector.GetAttribute(methodInfo, methodAttribute.binding);
14 references to binding
System.Web.Services (14)
System\Web\Services\Protocols\SoapReflector.cs (10)
93internal bool IsClaimsConformance { get { return binding != null && binding.ConformsTo == WsiProfiles.BasicProfile1_1; } } 322if (soapMethod.binding != null && soapMethod.binding.Namespace != null && soapMethod.binding.Namespace.Length != 0) 323requestNamespace = soapMethod.binding.Namespace; 341if (soapMethod.binding != null && soapMethod.binding.Namespace != null && soapMethod.binding.Namespace.Length != 0) 342responseNamespace = soapMethod.binding.Namespace;
System\Web\Services\Protocols\SoapServerMethod.cs (2)
211this.wsiClaims = soapMethod.binding == null ? WsiProfiles.None : soapMethod.binding.ConformsTo;
System\Web\Services\Protocols\SoapServerProtocol.cs (2)
142serverMethod.wsiClaims = soapMethod.binding == null ? WsiProfiles.None : soapMethod.binding.ConformsTo;