January 2011
Intermediate to advanced
1648 pages
70h 30m
English
DynamicObjectSo far, we haven’t had a chance to control any of the binding logic that happens at runtime when invoking dynamic operations on an object. The flexible infrastructure of the DLR provides a way to create objects that participate in those operations. To achieve this, the simplest route is the use of System.Dynamic.DynamicObject, which is defined as shown in Figure 22.17.
Figure 22.17. A look at DynamicObject and IDynamicMetaObjectProvider.

As you can see, this base class contains Try methods for every dynamic operation that’s supported by the DLR. The Binder objects passed as the first argument correspond ...
Read now
Unlock full access