C# Class D16.VideoCommander.VlcArgumentBuilder

Base class for command line arguments
Afficher le fichier Open project: feg-giessen/videocommander

Protected Properties

Свойство Type Description
commands string>.Dictionary

Méthodes publiques

Méthode Description
GetArgumentString ( ) : string

Build the complete arguments string.

Méthodes protégées

Méthode Description
SetBoolean ( bool value, string trueValue, string falseValue ) : void

Sets (adds or updates) a boolean command parameter.

SetString ( string key, string value ) : void

Sets (adds or updates) a command parameter.

VlcArgumentBuilder ( ) : System

Method Details

GetArgumentString() public méthode

Build the complete arguments string.
public GetArgumentString ( ) : string
Résultat string

SetBoolean() protected méthode

Sets (adds or updates) a boolean command parameter.
protected SetBoolean ( bool value, string trueValue, string falseValue ) : void
value bool The value (true or false).
trueValue string The argument string for "true".
falseValue string The argument string for "false".
Résultat void

SetString() protected méthode

Sets (adds or updates) a command parameter.
protected SetString ( string key, string value ) : void
key string The parameter name.
value string The parameter value.
Résultat void

VlcArgumentBuilder() protected méthode

protected VlcArgumentBuilder ( ) : System
Résultat System

Property Details

commands protected_oe property

List of commands (with values).
protected Dictionary commands
Résultat string>.Dictionary