1 write to FilePath
dotnet-svcutil-lib (1)
Metadata\MetadataFileInfo.cs (1)
23this.FilePath = filePath;
10 references to FilePath
dotnet-svcutil-lib (10)
Metadata\MetadataDocumentSaver.cs (6)
61WsdlFilePath = mainWsdl?.FilePath, 62MetadataFiles = metadataDocumentSaver.MetadataFiles.Select(mf => mf.FilePath), 71var fileInfo = this.MetadataFiles.FirstOrDefault(fi => File.Exists(fi.FilePath)); 74throw new IOException(string.Format(CultureInfo.CurrentCulture, MetadataResources.ErrFileAlreadyExistsFormat, fileInfo.FilePath)); 80using (XmlNS.XmlWriter xWriter = CreateXmlFile(mfi.FilePath)) 290var mainWsdlFile = wsdlFiles.Where(w => !importedWsdl.Any(i => MetadataFileNameManager.UriEqual(i, w.FilePath))).FirstOrDefault();
Metadata\MetadataFileInfo.cs (4)
35return other != null && (Object.ReferenceEquals(this, other) || this.Equals(other.FilePath)); 40return otherFilePath != null && MetadataFileNameManager.UriEqual(this.FilePath, otherFilePath); 50return this.FilePath.ToUpperInvariant().GetHashCode(); 55return this.FilePath;