Base:
property
Extensions
System.Web.Services.Description.DocumentableItem.Extensions
18 references to Extensions
System.ServiceModel (7)
System\ServiceModel\Description\SoapHelper.cs (3)
127SoapConverter.ConvertExtensions(endpointContext.WsdlPort.Extensions, version, SoapConverter.ConvertSoapAddressBinding); 466wsdlPort.Extensions.Add(soapAddressBinding); 564foreach (object o in wsdlPort.Extensions)
System\ServiceModel\Description\WsdlExporter.cs (1)
630wsdlPort.Extensions.Add(endpointRef);
System\ServiceModel\Description\WsdlImporter.cs (3)
1082XmlElement addressing10Element = wsdlPort.Extensions.Find(AddressingStrings.EndpointReference, Addressing10Strings.Namespace); 1083XmlElement addressing200408Element = wsdlPort.Extensions.Find(AddressingStrings.EndpointReference, Addressing200408Strings.Namespace); 1084WsdlNS.SoapAddressBinding soapAddressBinding = (WsdlNS.SoapAddressBinding)wsdlPort.Extensions.Find(typeof(WsdlNS.SoapAddressBinding));
System.Web.Extensions (1)
Compilation\WCFModel\AsmxEndpointPickerExtension.cs (1)
113SoapAddressBinding addressBinding = port.Extensions.Find(addressType) as SoapAddressBinding;
System.Web.Services (10)
System\Web\Services\Description\HttpGetProtocolReflector.cs (1)
36Port.Extensions.Add(httpAddressBinding);
System\Web\Services\Description\HttpPostProtocolReflector.cs (1)
43Port.Extensions.Add(httpAddressBinding);
System\Web\Services\Description\HttpProtocolImporter.cs (1)
364HttpAddressBinding httpAddressBinding = Port == null ? null : (HttpAddressBinding)Port.Extensions.Find(typeof(HttpAddressBinding));
System\Web\Services\Description\ProtocolImporter.cs (1)
453if (port != null) AddExtensionWarningComments(codeClass.Comments, port.Extensions);
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
192global::System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection a = (global::System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection)o.@Extensions; 4306global::System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection a_4 = (global::System.Web.Services.Description.ServiceDescriptionFormatExtensionCollection)o.@Extensions;
System\Web\Services\Description\SoapHttpTransportImporter.cs (1)
18SoapAddressBinding soapAddress = ImportContext.Port == null ? null : (SoapAddressBinding)ImportContext.Port.Extensions.Find(typeof(SoapAddressBinding));
System\Web\Services\Description\SoapProtocolReflector.cs (1)
238Port.Extensions.Add(CreateSoapAddressBinding(ServiceUrl));
System\Web\Services\Description\WebServicesInteroperability.cs (1)
545if (!CheckExtensions(port.Extensions))
System\Web\Services\Protocols\DiscoveryServerProtocol.cs (1)
102SoapAddressBinding soapAddress = (SoapAddressBinding)port.Extensions.Find(typeof(SoapAddressBinding));