17 references to MetadataSections
dotnet-svcutil-lib (17)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (6)
497foreach (MetadataSection innerSection in ((MetadataSet)section.Metadata).MetadataSections) 513_metadataSet.MetadataSections.Add(section); 526_metadataSet.MetadataSections.Add(section); 535_metadataSet.MetadataSections.Add(section); 543_metadataSet.MetadataSections.Add(section); 547_metadataSet.MetadataSections.Add(section);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSet.cs (3)
80_sections = metadataSet.MetadataSections; 295global::System.Collections.ObjectModel.Collection<global::System.ServiceModel.Description.MetadataSection> a = (global::System.Collections.ObjectModel.Collection<global::System.ServiceModel.Description.MetadataSection>)o.@MetadataSections; 470global::System.Collections.ObjectModel.Collection<global::System.ServiceModel.Description.MetadataSection> a_0 = (global::System.Collections.ObjectModel.Collection<global::System.ServiceModel.Description.MetadataSection>)o.@MetadataSections;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (2)
134set.MetadataSections.Add(MetadataSection.CreateFromServiceDescription(wsdl)); 137set.MetadataSections.Add(MetadataSection.CreateFromSchema(schema));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (1)
67this.ProcessMetadataDocuments(metadata.MetadataSections);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSSecurityPolicy.cs (2)
2289metadataSet.MetadataSections.Add(new MetadataSection(null, null, new MetadataReference(issuerMetadataAddress, AddressingVersion.WSAddressing10))); 2340foreach (MetadataSection section in metadataSet.MetadataSections)
Metadata\MetadaExchangeResolver.cs (2)
57return _metadataSet != null && _metadataSet.MetadataSections.Any((section) => section.Metadata is XmlSchema || section.Metadata is WsdlNS.ServiceDescription); 168return _metadataSet.MetadataSections;
Metadata\ServiceDescriptor.cs (1)
138(this.metadataDocumentLoader.MetadataSections as List<MetadataSection>).AddRange(newSet.MetadataSections);