C# Class KeePass.App.AppHelp

Application help provider. Starts an external application that shows help on a specified topic.
Datei anzeigen Open project: amiryal/keepass2 Class Usage Examples

Public Methods

Method Description
ShowHelp ( string strTopic, string strSection ) : void

Show a help page.

ShowHelp ( string strTopic, string strSection, bool bPreferLocal ) : void

Show a help page.

Private Methods

Method Description
RunCommandAsync ( object pData ) : void
ShowHelpLocal ( string strTopic, string strSection ) : void
ShowHelpOnline ( string strTopic, string strSection ) : void

Method Details

ShowHelp() public static method

Show a help page.
public static ShowHelp ( string strTopic, string strSection ) : void
strTopic string Topic name. May be null.
strSection string Section name. May be null. Must not start /// with the '#' character.
return void

ShowHelp() public static method

Show a help page.
public static ShowHelp ( string strTopic, string strSection, bool bPreferLocal ) : void
strTopic string Topic name. May be null.
strSection string Section name. May be null. Must not start /// with the '#' character.
bPreferLocal bool Specify if the local help file should be /// preferred. If no local help file is available, the online help /// system will be used, independent of the bPreferLocal flag.
return void