9 instantiations of MetadataReferenceRetriever
dotnet-svcutil-lib (9)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (9)
248return this.BeginGetMetadata(new MetadataReferenceRetriever(new EndpointAddress(address), this), callback, asyncState); 258return this.BeginGetMetadata(new MetadataReferenceRetriever(address, this), callback, asyncState); 289: (MetadataRetriever)new MetadataReferenceRetriever(new EndpointAddress(address), this); 301return Task.Factory.FromAsync<MetadataRetriever, MetadataSet>(this.BeginGetMetadata, this.EndGetMetadata, new MetadataReferenceRetriever(address, this), /* state */ null); 316return Task.Factory.FromAsync<MetadataRetriever, MetadataSet>(this.BeginGetMetadata, this.EndGetMetadata, new MetadataReferenceRetriever(address, via, this), /* state */ null); 340retriever = new MetadataReferenceRetriever(new EndpointAddress(address), this); 352MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, this); 368MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, via, this); 508MetadataRetriever retriever = new MetadataReferenceRetriever(address, _resolver, section.Dialect, section.Identifier);
5 references to MetadataReferenceRetriever
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataExchangeClient.cs (5)
352MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, this); 368MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, via, this); 1074return obj is MetadataReferenceRetriever && ((MetadataReferenceRetriever)obj)._address == _address; 1089_message = MetadataReferenceRetriever.CreateGetMessage(messageVersion);