<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>Set this ModuleCallback as a temporary handler. <seecref="M:Gnome.Vfs.ModuleCallback.Callback"/> will be called on the same thread as the gnome-vfs operation that invokes it. The temporary handler is set per-thread.</summary>
<remarks>
<para>
<seecref="M:Gnome.Vfs.ModuleCallback.Pop"/> removes the most recently set temporary handler. The temporary handlers are treated as a first-in first-out stack.</para>
<para>Use this function to set a temporary callback handler for a single call or a few calls. You can use <seecref="M:Gnome.Vfs.ModuleCallback.SetDefault"/> to set a callback function that will establish a permanent global setting for all threads instead.</para>
<summary>Remove the temporary handler set with <seecref="M:Gnome.Vfs.ModuleCallback.Push"/>. If another temporary handler was previously set on the same thread, it becomes the current handler. Otherwise, the default handler, if any, becomes current.</summary>
<remarks>The temporary handlers are treated as a first-in first-out stack.</remarks>
<summary>Set this <seecref="T:Gnome.Vfs.ModuleCallback"/> as the default handler. <seecref="M:Gnome.Vfs.ModuleCallback.Callback"/> will be called on the same thread as the gnome-vfs operation that invokes it. The default value is shared for all threads, but setting it is thread-safe.</summary>
<remarks>Use this function if you want to set a handler to be used by your whole application. You can use <seecref="M:Gnome.Vfs.ModuleCallback.Push"/> to set a callback function that will temporarily override the default on the current thread instead. Or you can also use <seecref="M:Gnome.Vfs.ModuleCallback.SetDefaultAsync"/> to set an async callback function.</remarks>
<summary>Set <seecref="M:Gnome.Vfs.ModuleCallback.Callback"/> as a temprary async handler. <seecref="M:Gnome.Vfs.ModuleCallback.Callback"/> will be called from a callback on the main thread. It will be passed a response function which should be called to signal completion of the callback. The callback function itself may return in the meantime.</summary>
<remarks>
<para>The temporary async handler is set per-thread.</para>
<para>
<seecref="M:Gnome.Vfs.ModuleCallback.PopAsync"/> removes the most recently set temporary temporary handler. The temporary async handlers are treated as a first-in first-out stack.</para>
<para>Use this function to set a temporary async callback handler for a single call or a few calls. You can use <seecref="M:Gnome.Vfs.ModuleCallback.SetDefaultAsync"/> to set an async callback function that will establish a permanent global setting for all threads instead.</para>
<summary>Remove the temporary async handler most recently set with <seecref="M:Gnome.Vfs.PushAsync"/>. If another temporary async handler was previously set on the same thread, it becomes the current handler. Otherwise, the default async handler, if any, becomes current.</summary>
<remarks>The temporary async handlers are treated as a first-in first-out stack.</remarks>
<summary>Set the default async callback. <seecref="M:Gnome.Vfs.ModuleCallback.Callback"/> will be called from a callback on the main thread. It will be passed a response function which should be called to signal completion of the callback. The callback function itself may return in the meantime.</summary>
<remarks>
<para>The default value is shared for all threads, but setting it is thread-safe.</para>
<para>Use this function if you want to globally set a callback handler for use with async operations.</para>
<para>You can use <seecref="M:Gnome.Vfs.ModuleCallback.PushAsync"/> to set an async callback function that will temporarily override the default on the current thread instead. Or you can also use <seecref="M:Gnome.Vfs.ModuleCallback.SetDefault"/> to set a regular callback function.</para>
<summary>Event which is called when a gnome-vfs module requires additional information from an application such as authentication.</summary>
<remarks>Implementations of <seecref="T:Gnome.Vfs.ModuleCallback"/> have properties such as <seecref="M:Gnome.Vfs.ModuleCallbackFullAuthentication.Username"/> which can be retrieved and set from the <seecref="M:Gnome.Vfs.ModuleCallback.Callback"/> handler. These properties are only valid during the callback activation.</remarks>