6 references to BeginGetMetadata
System.ServiceModel (6)
System\ServiceModel\Description\MetadataExchangeClient.cs (6)
269return this.BeginGetMetadata(new MetadataLocationRetriever(address, this), callback, asyncState); 273return this.BeginGetMetadata(new MetadataReferenceRetriever(new EndpointAddress(address), this), callback, asyncState); 282return this.BeginGetMetadata(new MetadataReferenceRetriever(address, this), callback, asyncState); 314return Task.Factory.FromAsync<MetadataRetriever, MetadataSet>(this.BeginGetMetadata, this.EndGetMetadata, retriever, /* state */ null); 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);