C# Class SignMaster.SigningParameters

Data structure holding all the information needed to sign a file (or files).
Exibir arquivo Open project: sillsdevinstaller Class Usage Examples

Public Methods

Method Description
IsUserInputNeeded ( ) : bool

Tests if we need the dialog box to fill in missing details of files to be signed

ParseCommandLineArgs ( string args ) : void

Interprets the process's command line arguments and fills in the data structure accordingly. The command line need not contain a comprehensive set of values.

SigningParameters ( ) : System

Constructor.

ValidateData ( ) : void

Tests that the signing details do not contain easily-detected errors.

Private Methods

Method Description
Reset ( ) : void

Used to delete all current data.

Method Details

IsUserInputNeeded() public method

Tests if we need the dialog box to fill in missing details of files to be signed
public IsUserInputNeeded ( ) : bool
return bool

ParseCommandLineArgs() public method

Interprets the process's command line arguments and fills in the data structure accordingly. The command line need not contain a comprehensive set of values.
public ParseCommandLineArgs ( string args ) : void
args string Command line arguments to our process
return void

SigningParameters() public method

Constructor.
public SigningParameters ( ) : System
return System

ValidateData() public method

Tests that the signing details do not contain easily-detected errors.
public ValidateData ( ) : void
return void