3 writes to metadataDocumentLoader
dotnet-svcutil-lib (3)
Metadata\ServiceDescriptor.cs (3)
40
this.
metadataDocumentLoader
= new MetadataDocumentLoader(serviceUri, userCredentialsProvider, clientCertificateProvider, serverCertificateValidationProvider);
53
this.
metadataDocumentLoader
= new MetadataDocumentLoader(metadataFiles, false, userCredentialsProvider, clientCertificateProvider, serverCertificateValidationProvider);
58
this.
metadataDocumentLoader
= metadataDocumentLoader ?? throw new ArgumentNullException(nameof(metadataDocumentLoader));
13 references to metadataDocumentLoader
dotnet-svcutil-lib (13)
Metadata\ServiceDescriptor.cs (13)
61
public Uri MetadataUrl { get { return this.
metadataDocumentLoader
.MetadataSourceUrl; } }
63
public IEnumerable<Uri> MetadataFiles { get { return this.
metadataDocumentLoader
.MetadataSourceFiles; } }
71
public IEnumerable<Exception> DocumentLoadExceptions { get { return this.
metadataDocumentLoader
.DocumentLoadExceptions; } }
75
public bool MetadataImported { get { return this.
metadataDocumentLoader
.State == MetadataDocumentLoader.LoadState.Successful; } }
84
return this.
metadataDocumentLoader
.MetadataSections;
95
if (this.
metadataDocumentLoader
.State == MetadataDocumentLoader.LoadState.Successful)
140
(this.
metadataDocumentLoader
.MetadataSections as List<MetadataSection>).AddRange(newSet.MetadataSections);
141
this.
metadataDocumentLoader
.State = MetadataDocumentLoader.LoadState.Successful;
146
this.
metadataDocumentLoader
.State = MetadataDocumentLoader.LoadState.Failed;
153
await this.
metadataDocumentLoader
.LoadAsync(cancellationToken).ConfigureAwait(false);
236
return await MetadataDocumentSaver.SaveMetadataAsync(directoryPath, this.
metadataDocumentLoader
.MetadataSections, fileNamingConvention, overwrite, cancellationToken).ConfigureAwait(false);
242
return this.
metadataDocumentLoader
.MetadataSections.Select((s) => s.Metadata).OfType<WsdlNS.ServiceDescription>().Any((wsdl) => ContainsHttpBindings(wsdl));
347
return this.
metadataDocumentLoader
.MetadataSections;