10 references to Name
Microsoft.DotNet.SignTool (2)
src\ZipData.cs (2)
63.Select(entry => (entry.Name, entry.DataStream, entry.Length)); 339var relativeName = entry.Name;
System.Formats.Tar (8)
System\Formats\Tar\TarEntry.cs (4)
254throw new InvalidOperationException(SR.Format(SR.TarEntryDoesNotSupportDataStream, Name, EntryType)); 281/// <returns>The <see cref="Name"/> of the current entry.</returns> 282public override string ToString() => Name; 335string name = ArchivingUtils.SanitizeEntryFilePath(Name, preserveDriveRoot: true);
System\Formats\Tar\TarHeader.Write.cs (3)
521throw new ArgumentException(SR.Format(SR.TarEntryFieldExceedsMaxLength, nameof(TarEntry.Name)), ArgNameEntry); 542throw new ArgumentException(SR.Format(SR.TarEntryFieldExceedsMaxLength, nameof(TarEntry.Name)), ArgNameEntry); 595throw new ArgumentException(SR.Format(SR.TarEntryFieldExceedsMaxLength, nameof(TarEntry.Name)), ArgNameEntry);
System\Formats\Tar\TarWriter.cs (1)
383throw new IOException(SR.Format(SR.TarStreamSeekabilityUnsupportedCombination, entry.Name));