5 writes to Format
System.Formats.Tar (5)
System\Formats\Tar\TarFile.cs (4)
40
CreateFromDirectory(sourceDirectoryName, destination, includeBaseDirectory, new TarWriterOptions() {
Format
= format });
102
return CreateFromDirectoryAsync(sourceDirectoryName, destination, includeBaseDirectory, new TarWriterOptions() {
Format
= format }, cancellationToken);
166
CreateFromDirectory(sourceDirectoryName, destinationFileName, includeBaseDirectory, new TarWriterOptions() {
Format
= format });
223
return CreateFromDirectoryAsync(sourceDirectoryName, destinationFileName, includeBaseDirectory, new TarWriterOptions() {
Format
= format }, cancellationToken);
System\Formats\Tar\TarWriter.cs (1)
75
return 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)
99
Format = options.
Format
;