<TypeSignatureLanguage="C#"Value="public abstract class ModuleCallback"Maintainer="auto"/>
<AssemblyInfo>
<AssemblyName>gnome-vfs-sharp</AssemblyName>
<AssemblyPublicKey>[00 24 00 00 04 80 00 00 94 00 00 00 06 02 00 00 00 24 00 00 52 53 41 31 00 04 00 00 01 00 01 00 71 EB 6C 55 75 52 9C BF 72 44 F7 A6 EA 05 62 84 F9 EA E0 3B CF F2 CC 13 2C 9C 49 0A B3 09 EA B0 B5 6B CE 44 9D F5 03 D9 C0 A8 1E 52 05 85 CD BE 70 E2 FB 90 43 4B AC 04 FA 62 22 A8 00 98 B7 A1 A7 B3 AF 99 1A 41 23 24 BB 43 25 F6 B8 65 BB 64 EB F6 D1 C2 06 D5 73 2D DF BC 70 A7 38 9E E5 3E 0C 24 6E 32 79 74 1A D0 05 03 E4 98 42 E1 9B F3 7B 19 8B 40 21 26 CB 36 89 C2 EA 64 96 A4 7C B4]</AssemblyPublicKey>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<AssemblyCulture>neutral</AssemblyCulture>
<Attributes/>
</AssemblyInfo>
<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>