10 references to Binding
System.Web.Services (10)
System\Web\Services\Description\ServiceDescriptionReflector.cs (2)
224
string key = method.
Binding
== null ? messageName : method.
Binding
.Name + "." + messageName;
System\Web\Services\Protocols\SoapReflector.cs (4)
224
if (method.
Binding
!= null) {
225
if (binding.Length > 0 && binding != method.
Binding
.Name) {
226
throw new InvalidOperationException(Res.GetString(Res.WebInvalidBindingName, binding, method.
Binding
.Name));
228
return method.
Binding
.Name;
System\Web\Services\WebServiceBindingAttribute.cs (4)
119
if (methodInfo.
Binding
!= null) {
120
if (binding.Length > 0 && methodInfo.
Binding
.Name != binding)
121
throw new InvalidOperationException(Res.GetString(Res.WebInvalidBindingName, binding, methodInfo.
Binding
.Name));
122
return methodInfo.
Binding
;