2 writes to Type
dotnet-svcutil-lib (2)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
326wsdlBinding.Type = wsdlPortTypeQName;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
5706o.@Type = ToXmlQualifiedName(Reader.Value);
12 references to Type
dotnet-svcutil-lib (12)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (1)
1100if (operation != null && !new XmlQualifiedName(operation.PortType.Name, targetNamespace).Equals(binding.Type))
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlContractConversionContext.cs (2)
152if (wsdlBinding.Type.Name == WsdlPortType.Name && wsdlBinding.Type.Namespace == WsdlPortType.ServiceDescription.TargetNamespace)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
339wsdlPortTypeQName = wsdlBinding.Type;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (7)
377ContractDescription contractDescription = GetOrImportContractDescription(wsdlBinding.Type, out wasExistingContract); 379_importedPortTypes.TryGetValue(wsdlBinding.Type, out contractContext); 871WsdlNS.PortType wsdlPortType = wsdlDocuments.GetPortType(wsdlOperationBinding.Binding.Type); 1505if (wsdlBinding.Type.Name == wsdlPortType.Name 1506&& wsdlBinding.Type.Namespace == wsdlPortType.ServiceDescription.TargetNamespace) 1516if (wsdlBinding.Type.Name == qName.Name 1517&& wsdlBinding.Type.Namespace == qName.Namespace)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
406WriteAttribute(@"type", @"", FromXmlQualifiedName(((Microsoft.Xml.XmlQualifiedName)o.@Type)));