This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.7zip.
Summary
Interfaces for all switches.
Commands "support" switches by implementing an ISupportSwitch
(e.g.
ISupportSwitchPassword
is implemented in all commands
that support setting a password (-p).
- Assembly
- Cake
.7zip .dll - Namespace
- Cake
.SevenZip .Switches - Implementing Types
-
- I
Support Switch Compression Method - I
Support Switch Timestamp From Most Recent File - AddCommand
- I
Support Switch Self Extracting Archive - UpdateCommand
- I
Support Switch Show Technical Information - ListCommand
- I
Support Switch Exclude Archive Filenames - RenameCommand
- DeleteCommand
- I
Support Switch Include Archive Filenames - I
Support Switch Compress Files Open For Writing - TestCommand
- I
Support Switch Output Directory - I
Support Switch Disable Parsing Of Archive Name - I
Support Switch Ntfs Alternate Streams - ExtractCommand
- I
Support Switch Password - I
Support Switch Archive Type - HashCommand
- I
Support Switch Update Options - I
Support Switch Nt Security Information - I
Support Switch Delete After Compression - ISupportSwitchVolume
- I
Support Switch Recurse Subdirectories - I
Support Switch Fully Qualified File Paths - I
Support Switch Include Filenames - I
Support Switch Set Hash Function - I
Support Switch Overwrite Mode - I
Support Switch Exclude Filenames - I
Support Switch Working Directory
- I
graph BT
Type["ISupportSwitch"]
class Type type-node
Implementing0["ISupportSwitchCompressionMethod"]-.->Type
click Implementing0 "/api/Cake.SevenZip.Switches/ISupportSwitchCompressionMethod"
Implementing1["ISupportSwitchTimestampFromMostRecentFile"]-.->Type
click Implementing1 "/api/Cake.SevenZip.Switches/ISupportSwitchTimestampFromMostRecentFile"
Implementing2["AddCommand"]-.->Type
click Implementing2 "/api/Cake.SevenZip.Commands/AddCommand"
Implementing3["ISupportSwitchSelfExtractingArchive"]-.->Type
click Implementing3 "/api/Cake.SevenZip.Switches/ISupportSwitchSelfExtractingArchive"
Implementing4["UpdateCommand"]-.->Type
click Implementing4 "/api/Cake.SevenZip.Commands/UpdateCommand"
Implementing5["ISupportSwitchShowTechnicalInformation"]-.->Type
click Implementing5 "/api/Cake.SevenZip.Switches/ISupportSwitchShowTechnicalInformation"
Implementing6["ListCommand"]-.->Type
click Implementing6 "/api/Cake.SevenZip.Commands/ListCommand"
Implementing7["ISupportSwitchExcludeArchiveFilenames"]-.->Type
click Implementing7 "/api/Cake.SevenZip.Switches/ISupportSwitchExcludeArchiveFilenames"
Implementing8["RenameCommand"]-.->Type
click Implementing8 "/api/Cake.SevenZip.Commands/RenameCommand"
Implementing9["DeleteCommand"]-.->Type
click Implementing9 "/api/Cake.SevenZip.Commands/DeleteCommand"
Implementing10["ISupportSwitchIncludeArchiveFilenames"]-.->Type
click Implementing10 "/api/Cake.SevenZip.Switches/ISupportSwitchIncludeArchiveFilenames"
Implementing11["ISupportSwitchCompressFilesOpenForWriting"]-.->Type
click Implementing11 "/api/Cake.SevenZip.Switches/ISupportSwitchCompressFilesOpenForWriting"
Implementing12["TestCommand"]-.->Type
click Implementing12 "/api/Cake.SevenZip.Commands/TestCommand"
Implementing13["ISupportSwitchOutputDirectory"]-.->Type
click Implementing13 "/api/Cake.SevenZip.Switches/ISupportSwitchOutputDirectory"
Implementing14["ISupportSwitchDisableParsingOfArchiveName"]-.->Type
click Implementing14 "/api/Cake.SevenZip.Switches/ISupportSwitchDisableParsingOfArchiveName"
Implementing15["ISupportSwitchNtfsAlternateStreams"]-.->Type
click Implementing15 "/api/Cake.SevenZip.Switches/ISupportSwitchNtfsAlternateStreams"
Implementing16["ExtractCommand"]-.->Type
click Implementing16 "/api/Cake.SevenZip.Commands/ExtractCommand"
Implementing17["ISupportSwitchPassword"]-.->Type
click Implementing17 "/api/Cake.SevenZip.Switches/ISupportSwitchPassword"
Implementing18["ISupportSwitchArchiveType"]-.->Type
click Implementing18 "/api/Cake.SevenZip.Switches/ISupportSwitchArchiveType"
Implementing19["HashCommand"]-.->Type
click Implementing19 "/api/Cake.SevenZip.Commands/HashCommand"
Implementing20["ISupportSwitchUpdateOptions"]-.->Type
click Implementing20 "/api/Cake.SevenZip.Switches/ISupportSwitchUpdateOptions"
Implementing21["ISupportSwitchNtSecurityInformation"]-.->Type
click Implementing21 "/api/Cake.SevenZip.Switches/ISupportSwitchNtSecurityInformation"
Implementing22["ISupportSwitchDeleteAfterCompression"]-.->Type
click Implementing22 "/api/Cake.SevenZip.Switches/ISupportSwitchDeleteAfterCompression"
Implementing23["ISupportSwitchVolume"]-.->Type
click Implementing23 "/api/Cake.SevenZip.Switches/ISupportSwitchVolume"
Implementing24["ISupportSwitchRecurseSubdirectories"]-.->Type
click Implementing24 "/api/Cake.SevenZip.Switches/ISupportSwitchRecurseSubdirectories"
Implementing25["ISupportSwitchFullyQualifiedFilePaths"]-.->Type
click Implementing25 "/api/Cake.SevenZip.Switches/ISupportSwitchFullyQualifiedFilePaths"
Implementing26["ISupportSwitchIncludeFilenames"]-.->Type
click Implementing26 "/api/Cake.SevenZip.Switches/ISupportSwitchIncludeFilenames"
Implementing27["ISupportSwitchSetHashFunction"]-.->Type
click Implementing27 "/api/Cake.SevenZip.Switches/ISupportSwitchSetHashFunction"
Implementing28["ISupportSwitchOverwriteMode"]-.->Type
click Implementing28 "/api/Cake.SevenZip.Switches/ISupportSwitchOverwriteMode"
Implementing29["ISupportSwitchExcludeFilenames"]-.->Type
click Implementing29 "/api/Cake.SevenZip.Switches/ISupportSwitchExcludeFilenames"
Implementing30["ISupportSwitchWorkingDirectory"]-.->Type
click Implementing30 "/api/Cake.SevenZip.Switches/ISupportSwitchWorkingDirectory"
Syntax
public interface ISupportSwitch
Extension Methods
Name | Value | Summary |
---|---|---|
Dump |
string |
Get a basic string representation of specified object.
From LoggingExtensions
Requires the Cake.Incubator addin
|
IsIn |
bool |
Checks if the source is contained in a list
From EnumerableExtensions
Requires the Cake.Incubator addin
|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From Extensions
Requires the Cake.Ftp addin
|
NotNull |
void |
From IssuesArgumentChecks
Requires the Cake.Issues addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|