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