21 references to Name
aspire (10)
Agents\AspireSkills\AspireSkillsBundleProvider.cs (3)
490if (string.IsNullOrWhiteSpace(entry.Name)) 495var destinationPath = GetSafeArchiveDestinationPath(destinationRoot, entry.Name); 519throw new InvalidDataException(string.Format(CultureInfo.InvariantCulture, "Aspire skills archive entry '{0}' has unsupported type '{1}'.", entry.Name, entry.EntryType));
Bundles\BundleService.cs (3)
878var name = entry.Name; 898throw new InvalidOperationException($"Tar entry '{entry.Name}' would extract outside the destination directory."); 932throw new InvalidOperationException($"Symlink '{entry.Name}' targets '{entry.LinkName}' which resolves outside the destination directory.");
Utils\ArchiveHelper.cs (4)
81if (string.IsNullOrEmpty(entry.Name)) 86var fullPath = Path.GetFullPath(Path.Combine(destinationPath, entry.Name)); 92throw new InvalidOperationException($"Tar entry '{entry.Name}' would extract outside the destination directory."); 126throw new InvalidOperationException($"Symlink '{entry.Name}' targets '{entry.LinkName}' which resolves outside the destination directory.");
Microsoft.Build.Tasks.Core (1)
Untar.cs (1)
275string entryName = tarEntry.Name;
sdk-tasks (1)
ExtractArchiveToDirectory.cs (1)
124string entryName = tarEntry.Name;
System.Formats.Tar (9)
System\Formats\Tar\PaxTarEntry.cs (1)
117/// <para>Setting properties such as <see cref="TarEntry.Name"/>, <see cref="TarEntry.ModificationTime"/>, <see cref="TarEntry.Uid"/>, <see cref="TarEntry.Gid"/>, <see cref="PosixTarEntry.UserName"/>, <see cref="PosixTarEntry.GroupName"/>, <see cref="TarEntry.LinkName"/>, <see cref="PosixTarEntry.DeviceMajor"/>, or <see cref="PosixTarEntry.DeviceMinor"/> will update the corresponding extended attribute to keep properties and extended attributes synchronized.</para>
System\Formats\Tar\TarEntry.cs (4)
275throw new InvalidOperationException(SR.Format(SR.TarEntryDoesNotSupportDataStream, Name, EntryType)); 315/// <returns>The <see cref="Name"/> of the current entry.</returns> 316public override string ToString() => Name; 369string name = ArchivingUtils.SanitizeEntryFilePath(Name, preserveDriveRoot: true);
System\Formats\Tar\TarHeader.Write.cs (3)
532throw new ArgumentException(SR.Format(SR.TarEntryFieldExceedsMaxLength, nameof(TarEntry.Name)), ArgNameEntry); 553throw new ArgumentException(SR.Format(SR.TarEntryFieldExceedsMaxLength, nameof(TarEntry.Name)), ArgNameEntry); 606throw new ArgumentException(SR.Format(SR.TarEntryFieldExceedsMaxLength, nameof(TarEntry.Name)), ArgNameEntry);
System\Formats\Tar\TarWriter.cs (1)
403throw new IOException(SR.Format(SR.TarStreamSeekabilityUnsupportedCombination, entry.Name));