<ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the <linklocation="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.</ThreadSafetyStatement>
<summary>Display application and Gnome system help.</summary>
<remarks>These functions provide a way to display help files that are either installed as part of the main Gnome installation or that are specific to the current application.</remarks>
<summary>Displays the help file specified by <paramrefname="file_name"/> at location <paramrefname="link_id"/> within the <paramrefname="doc_id"/> domain in the preferred help browser of the user.</summary>
Most of the time, you want to call <seecref="M:Gnome.Help.Display(System.String,System.String)"/> instead.
</para>
<para>
This function will display the help through creating a "ghelp" URI, by looking for <paramrefname="file_name"/> in the applications installed help location (found by <seecref="F:Gnome.FileDomain.AppHelp"/>) and its <paramrefname="app_id"/>. The resulting URI is roughly in the form "ghelp:appid/file_name?link_id". If a matching file cannot be found, <seelangword="false"/> is returned.
</para>
<para>
Please note that this only displays application help. To display help files from the global Gnome domain, you will want to use <seecref="M:Gnome.Help.DisplayDesktop(Gnome.Program,System.String,System.String,System.String)"/>.
<summary>Displays the help file specified by <paramrefname="file_name"/> at location <paramrefname="link_id"/> in the preferred help browser of the user.</summary>
<remarks>You should never need to call this function directly in code, since it is just a wrapper for <seecref="M:Gnome.Url.Show(System.String)"/> and consequently the viewer used to display the results depends upon the scheme of the URI (so it is not strictly a help-only function).</remarks>
<summary>Displays the Gnome system help file specified by <paramrefname="file_name"/> at location <paramrefname="link_id"/> in the preferred help browser of the user.</summary>
This is done by creating a "ghelp" URI, by looking for <paramrefname="file_name"/> in the system help domain (<seecref="F:Gnome.FileDomain.Help"/>) and its <paramrefname="app_id"/>. This domain is determined when the library is compiled. If a matching file cannot be found, <seelangword="false"/> is returned.
</para>
<para>
Please note that this only displays system help. To display help files for an application, you will want to use <seecref="M:Gnome.Help.Display(System.String,System.String)"/>.