12 references to Binding
System.Web.Services (12)
System\Web\Services\Description\HttpGetProtocolImporter.cs (1)
29HttpBinding httpBinding = (HttpBinding)Binding.Extensions.Find(typeof(HttpBinding));
System\Web\Services\Description\HttpPostProtocolImporter.cs (1)
28HttpBinding httpBinding = (HttpBinding)Binding.Extensions.Find(typeof(HttpBinding));
System\Web\Services\Description\HttpProtocolImporter.cs (1)
366ServiceDescription serviceDescription = Binding.ServiceDescription;
System\Web\Services\Description\ProtocolImporter.cs (2)
505AddWarningComment(codeClass == null ? codeNamespace.Comments : codeClass.Comments, Res.GetString(Res.TheBinding0FromNamespace1WasIgnored2, Binding.Name, Binding.ServiceDescription.TargetNamespace, text));
System\Web\Services\Description\Soap12ProtocolImporter.cs (1)
33Soap12Binding soapBinding = (Soap12Binding)Binding.Extensions.Find(typeof(Soap12Binding));
System\Web\Services\Description\SoapHttpTransportImporter.cs (1)
33ServiceDescription serviceDescription = ImportContext.Binding.ServiceDescription;
System\Web\Services\Description\SoapProtocolImporter.cs (5)
400SoapBinding soapBinding = (SoapBinding)Binding.Extensions.Find(typeof(SoapBinding)); 428soapBinding = (SoapBinding)Binding.Extensions.Find(typeof(SoapBinding)); 449string targetNs = Service != null ? Service.ServiceDescription.TargetNamespace : Binding.ServiceDescription.TargetNamespace; 455attribute.Arguments.Add(new CodeAttributeArgument("Name", new CodePrimitiveExpression(XmlConvert.DecodeName(Binding.Name)))); 456attribute.Arguments.Add(new CodeAttributeArgument("Namespace", new CodePrimitiveExpression(Binding.ServiceDescription.TargetNamespace)));