WordPress database error: [INSERT, UPDATE command denied to user '51213-2'@'10.10.20.220' for table 'wp_options']
INSERT INTO `wp_options` (`option_name`, `option_value`, `autoload`) VALUES ('_transient_doing_cron', '1715350943.9302449226379394531250', 'yes') ON DUPLICATE KEY UPDATE `option_name` = VALUES(`option_name`), `option_value` = VALUES(`option_value`), `autoload` = VALUES(`autoload`)


Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372

Warning: Cannot modify header information - headers already sent by (output started at /home/lexiqued/www/WordPress/wp-includes/wp-db.php:1502) in /home/lexiqued/www/WordPress/wp-includes/rest-api/class-wp-rest-server.php on line 1372
{"id":733,"date":"2011-11-24T10:19:25","date_gmt":"2011-11-24T09:19:25","guid":{"rendered":"http:\/\/www.jonathanantoine.com\/?p=733"},"modified":"2011-11-24T10:20:14","modified_gmt":"2011-11-24T09:20:14","slug":"wpf-4-5-%e2%80%93-part-13-binding-to-types-that-implement-icustomtypeprovider-2","status":"publish","type":"post","link":"http:\/\/www.jonathanantoine.com\/2011\/11\/24\/wpf-4-5-%e2%80%93-part-13-binding-to-types-that-implement-icustomtypeprovider-2\/","title":{"rendered":"WPF 4.5 \u2013 Part 13 : binding to types that Implement ICustomTypeProvider"},"content":{"rendered":"

\"\"<\/a>This is the part number 13 of the serie on the WPF 4.5 new features<\/a>.<\/p>\n

ICustomTypeProvider is an interface already known in the Silverlight 5 world but it is shipped with full support in WPF 4.5 too.
\n<\/strong><\/p>\n

In this post we will discover what is the interface ICustomTypeProvider and how it can be used in WPF 4.5 !<\/p>\n

<\/p>\n

ICustomTypeProvider : what is it ?<\/h3>\n

You may already know the ICustomTypeDescriptor (notice the ‘Descriptor<\/em>‘ instead of the ‘Provider<\/em>‘) interface as you are all WPF fans :-p ! This interface let you decide what information your type will expose when reflection is used. <\/strong><\/p>\n

Binding uses reflection… So by implementing this interface you can define a set of dynamic properties and create binding targeting them<\/strong>. This is particulary useful when you are building a framework or when you know the properties name only at runtime.<\/p>\n

ICustomTypeProvider is basically the same thing but it is lighter and designed for Silverlight at start.<\/strong><\/p>\n

As this subject is covered since a long time for Silverlight 5, I won’t go in details on it. If you want more information you can read these helpful posts:<\/p>\n