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