The dynamicobject tag has no wiki summary.
20
votes
2answers
1k views
Differences between ExpandoObject, DynamicObject and dynamic
What are the differences between System.Dynamic.ExpandoObject, System.Dynamic.DynamicObject and dynamic?
In which situations do you use these types?
8
votes
2answers
501 views
Get generic type of call to method in dynamic object
I'm starting to work with dynamic objects in .Net and I can't figure out how to do something.
I have a class that inherits from DynamicObject, and I override the TryInvokeMember method.
e.g.
class ...
4
votes
2answers
138 views
Determining the expected type of a DynamicObject member access
Is it possible to determine what type a dynamic member access expects? I've tried
dynamic foo = new MyDynamicObject();
int x = foo.IntValue;
int y = (int)foo.IntValue;
And in the TryGetMember ...
3
votes
1answer
28 views
dynamic does not contain a definition for a property from a project reference
I am getting an error that says 'object' does not contain a definition for 'Title'
all the code is also on github
I have a ConsoleApplication1 that looks like this
namespace ConsoleApplication1
{
...
3
votes
0answers
50 views
How to deserialize dictionary with hierarchical keys to dynamic object?
I'm receiving data in dictionary form and would like to deserialize it into a dynamic object. The twist is the dictionary keys express a hierarchical object. A second twist is some of the keys ...
3
votes
1answer
199 views
DynamicObject - invoking method based on argument value
I'd like to be able to store a dictionary of Actions and being able to invoke those based on key for the dictionary. If key is not found, then no action is getting invoked. I had an idea of performing ...
3
votes
2answers
121 views
Value of result when implementing void methods via DynamicObject
I'm looking at the examples for overriding TryInvokeMember on DynamicObject to implement dynamic method binding. The signature is as follows
public virtual bool TryInvokeMember(
...
2
votes
1answer
72 views
Is there any Ready-to-use DynamicObject in C#?
I know viewbag is one of the ready-to-use DynamicObject, but if you are not in a view or controller, is there any other Ready-to-use DynamicObject except to write your own?
(btw, I found a sample of ...
2
votes
1answer
93 views
Enum values for Office interop via dynamic object
I am using COM interop for Word automation within my Silverlight-Ouf-Of-Browser application. This means that I can't reference COM directly but instead I rely on dynamic.
Now I would like to call the ...
2
votes
1answer
154 views
XML-RPC.NET and C# Dynamic Types
The Cook Computing blog has a post discussing how dynamics in .NET 4 could be used to create dynamic RPC calls. (Post: ALTERNATIVE SYNTAX FOR MEMBER CALLS ON C# DYNAMIC TYPES )
The post shows the ...
2
votes
3answers
151 views
Is there a way to create a DynamicObject that supports an Interface?
Can I define a class which derives from DynamicObject and supports an interface (ICanDoManyThings) without having to implement each method in the interface?
I'm trying to make a dynamic proxy ...
2
votes
4answers
86 views
Have anybody created an open source dynamic .NET class for exposing private functions/properties on another class?
And if so, I would very much like to use it. Does anybody have any pointers?
My goal is to remove the need for _accessor projects in my test solution. I figured that if I created a dynamic class, it ...
2
votes
3answers
606 views
Loop DynamicObject properties
I'm trying to understand the DynamicObject type. Found this MSDN article to be very consise and clear as how to create and use DynamicObject:
...
2
votes
1answer
273 views
Delegating dynamic object resolution to other instances
I'm currently hosting IronPython in a .NET 2.0 application.
I want to create a class (in C#) whose instances can be "extended" by plugin instances. That means, each member access which is ...
2
votes
1answer
337 views
Is it possible to dynamically add properties to an entity object?
is it possible to add properties at run-time to a class that was generated by the entity framework? I am successful in doing so with POCO classes that inherit from DynamicObject but when I try to do ...
1
vote
2answers
80 views
How to Create a dynamic class and add it to project
How I can Create a dynamic class and add it to the project(creating from)?
can I create class in Build and Rebuild of my project? I mean can I handle Build and Rebuild events in my project?
thanks
1
vote
1answer
56 views
Proxying a collection interfaces dynamically
I have occasionally had cause to write collection class adapters, i.e. create an adapter for a class that implements IList<T> proxying its methods, whist adding some extra functionality. The ...
1
vote
2answers
231 views
When overriding DynamicObject's TryInvokeMember(), how to choose a correct overload to invoke?
How would you implement an algorithm to choose the correct method overload, when overriding the following method on DynamicObject?
bool TryInvokeMember(InvokeMemberBinder binder, object[] args, out ...
1
vote
1answer
261 views
DLR & Performance
I'm intending to create a web service which performs a large number of manually-specified calculations as fast as possible, and have been exploring the use of DLR.
Sorry if this is long but feel free ...
1
vote
3answers
1k views
Binding DynamicObject to a DataGrid with automatic column generation?
I'm still experimenting with DynamicObjects. Now I need some information: I'm trying to bind an object inheriting from DynamicObject to a WPF DataGrid (not Silverlight).
How do I get the DataGrid to ...
1
vote
1answer
407 views
Inheriting from class that inherits from DynamicObject
I'm experimenting with C# 4.0's dynamic object model.
I've created an abstract class named "Block" that inherits from DynamicObject. It overrides TryGetMember and TrySetMember.
Furthermore I've ...
0
votes
0answers
91 views
C# 4.0 Dynamic Object with ASP.NET DataBinding
I am trying to display in an ASP.NET GridView a property of a bound object that has been dynamically created using a dynamic object. In my example, DynamicProperties.FullName is dynamic.
My client ...
0
votes
0answers
67 views
Dynamic fields in C# script
We have a module for interpreting relatively small scripts. It works by "compiling" the statements into Linq Expressions and executing the expressions using provided arguments. Linq has been working ...
0
votes
0answers
330 views
DynamicObject databinding on DataGridView, System.Dynamic namespace
I have some collections of objects that inherits DynamicObject class, all works great with the BindingSource and BindingNavigator, but I don't have the dynamic properties displayed on the ...
0
votes
2answers
325 views
C# Converting a DynamicObject to arbitrary type
I'm writing a Javascript <-> C# bridge and ran into the following problem:
There's a class JSObject:
public class JSObject : DynamicObject
{
public JSEngineAPI wrappedObject { get; set; }
...
0
votes
2answers
193 views
php dynamic class inheritance
I know I can generate a class at runtime by executing
$obj = (object)array('foo' => 'bar');+
this way I can use
echo $obj->foo; //bar
What if want to make $obj inherits from an existing ...