<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>NotifyEventHandler is a delegate object that can be used to notify your program whenever a key's value is changed, either in your program or externally (i.e. via gconf-editor).</summary>
<remarks>You only have to attach a GConf.NotifyEventHandler delegate to a key, this way:
<example>
<codelang="C#">gconfClient.AddNotify (key, new GConf.NotifyEventHandler(function));
</code>
</example>
This is very important for graphic interfaces, as it is a good practice to make the application react instantly to preference changes.</remarks>