5 writes to Format
System.Formats.Tar (5)
System\Formats\Tar\TarFile.cs (4)
40CreateFromDirectory(sourceDirectoryName, destination, includeBaseDirectory, new TarWriterOptions() { Format = format }); 102return CreateFromDirectoryAsync(sourceDirectoryName, destination, includeBaseDirectory, new TarWriterOptions() { Format = format }, cancellationToken); 166CreateFromDirectory(sourceDirectoryName, destinationFileName, includeBaseDirectory, new TarWriterOptions() { Format = format }); 223return CreateFromDirectoryAsync(sourceDirectoryName, destinationFileName, includeBaseDirectory, new TarWriterOptions() { Format = format }, cancellationToken);
System\Formats\Tar\TarWriter.cs (1)
75return new TarWriterOptions() { Format = format };
5 references to Format
System.Formats.Tar (5)
System\Formats\Tar\TarFile.cs (4)
55/// <exception cref="ArgumentOutOfRangeException"><see cref="TarWriterOptions.Format"/> is either <see cref="TarEntryFormat.Unknown"/>, or not one of the other enum values.</exception> 119/// <exception cref="ArgumentOutOfRangeException"><see cref="TarWriterOptions.Format"/> is either <see cref="TarEntryFormat.Unknown"/>, or not one of the other enum values.</exception> 179/// <exception cref="ArgumentOutOfRangeException"><see cref="TarWriterOptions.Format"/> is either <see cref="TarEntryFormat.Unknown"/>, or not one of the other enum values.</exception> 238/// <exception cref="ArgumentOutOfRangeException"><see cref="TarWriterOptions.Format"/> is either <see cref="TarEntryFormat.Unknown"/>, or not one of the other enum values.</exception>
System\Formats\Tar\TarWriter.cs (1)
99Format = options.Format;