9 instantiations of MetadataReferenceRetriever
System.ServiceModel (9)
System\ServiceModel\Description\MetadataExchangeClient.cs (9)
273return this.BeginGetMetadata(new MetadataReferenceRetriever(new EndpointAddress(address), this), callback, asyncState); 282return this.BeginGetMetadata(new MetadataReferenceRetriever(address, this), callback, asyncState); 312: (MetadataRetriever) new MetadataReferenceRetriever(new EndpointAddress(address), this); 324return Task.Factory.FromAsync<MetadataRetriever, MetadataSet>(this.BeginGetMetadata, this.EndGetMetadata, new MetadataReferenceRetriever(address, this), /* state */ null); 339return Task.Factory.FromAsync<MetadataRetriever, MetadataSet>(this.BeginGetMetadata, this.EndGetMetadata, new MetadataReferenceRetriever(address, via, this), /* state */ null); 362retriever = new MetadataReferenceRetriever(new EndpointAddress(address), this); 374MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, this); 390MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, via, this); 544MetadataRetriever retriever = new MetadataReferenceRetriever(address, this.resolver, section.Dialect, section.Identifier);
5 references to MetadataReferenceRetriever
System.ServiceModel (5)
System\ServiceModel\Description\MetadataExchangeClient.cs (5)
374MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, this); 390MetadataReferenceRetriever retriever = new MetadataReferenceRetriever(address, via, this); 1116return obj is MetadataReferenceRetriever && ((MetadataReferenceRetriever)obj).address == this.address; 1132message = MetadataReferenceRetriever.CreateGetMessage(messageVersion);