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