System
[00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00]
1.0.3300.0
1.0.5000.0
2.0.0.0
4.0.0.0
Gtk# is thread aware, but not thread safe; See the <link location="node:gtk-sharp/programming/threads">Gtk# Thread Programming</link> for details.
Important is deprecated in .NET Framework 2.0 and above. But, because it is used internally, it has been kept. You can find an example at How to: Create Custom Configuration Sections Using IConfigurationSectionHandler. If you use the previous example, please build it with the .NET Framework version 1.0 or 1.1.
In .NET Framework version 2.0 and above, you must instead derive from the class to implement the related configuration section handler. You can find an example at How to: Create Custom Configuration Sections Using ConfigurationSection.
Instances of the class must be thread safe and stateless. The method must be callable from multiple threads simultaneously.
Furthermore, the configuration object generated by the method must be thread safe and immutable. Because the configuration objects are cached by the configuration system, it is important not to modify the parent argument to the method. For example, if the return value of is only a small modification of the parent, actual modifications must be made on a clone of the parent, not the original.
Handles the access to certain configuration sections.
Method
1.0.5000.0
2.0.0.0
4.0.0.0
System.Object
Instances of the class must be thread safe and stateless. The method must be callable from multiple threads simultaneously.
Furthermore, the configuration object generated by the method must be thread safe and immutable. Because the configuration objects are cached by the configuration system, it is important not to modify the parent argument to . For example, if the return value of is only a small modification of the parent, actual modifications must be made on a clone of the parent, not the original.
Creates a configuration section handler.
The created section handler object.
Parent object.
Configuration context object.
Section XML node.