0
votes
1answer
56 views

dynamic method and the MethodAccessException

given the following classes: class SomeBuilder<T> { public static object Build(int index) { ... } } class SomeHelper { public object GetBuildObj(object value) { ...
1
vote
0answers
12 views

creating object using reflection in windows appplication

I want to send a function 2 parameters. 1. Type of class 2.Name of object. In the new function I want to create the object by the type and the name that was given. for example: private void ...
1
vote
1answer
26 views

Error binding to target method

I am trying to call a static method from a helper class, of which the type is not known until runtime. I thought I had solved the problem however I am getting the following error - "Error binding to ...
2
votes
2answers
64 views

How do you create a dynamic equality implementation where you can pass in the property names to be compared?

Say I have an object Person with the properties below: public class Person { public int ID { get; set; } public int EmployeeNo { get; set; } public string ...
2
votes
3answers
62 views

Scala dynamic instantiation with default arguments

Is there a way to dynamically instantiate a Scala case class having one or more default parameters specified? I'm looking for the dynamic (reflection-based) equivalent of this: case class Foo( ...
0
votes
2answers
39 views

Calling a constructor of a unknowed at compile time class

i have this situation: I have classes represeting properties: public abstract class RootProperty { public int Id {get; set;} } public class AProperty {} public class BProperty {} and let there ...
1
vote
1answer
18 views

List of DisposableLazy`2 does not have 'Add' method when called using dynamic variable

Problem I am facing a problem using dynamically created list of items when Add method is called on dynamicvariable. Consider following code. IEnumerable<dynamic> plugins = ...
0
votes
1answer
70 views

Extend a generic class dynamically in Java

I need to extend on runtime a class with a generic signature. For example, the class to be extended is: public class A<T> {} I need to get this dynamically: public class B extends ...
1
vote
1answer
52 views

add attributes via string to dynamic object

I have the following definition: public class cell : DynamicObject { } [DataContract] public class rows { [DataMember] public List<cell> rows; } Later in the code I do: dynamic ...
0
votes
1answer
77 views

Dealing with a Generic Type cast

I have a generic type (RoleEntity) that may or may not implement an interface that is also generic (IActor). Background on the design is below, but the short story is that a RoleEntity is a role that ...
1
vote
5answers
104 views

Create a variable of a type only known at runtime (C#)

My question is very similar to : Cast to type known only at runtime , however that one was not really answered (it's also in C rather than C#). I'm writing something to control some hardware, and ...
1
vote
4answers
80 views

Java Reflection - how to set value for the class which are extended from One and Two

Goal : set the value for a class fields as well the extended class fields Example : public class CreateRequisitionRO extends AbstractPortfolioSpecificRO {....} i am able to set value for the ...
1
vote
1answer
121 views

Pseudo code to recursively construct java object using Reflection

I am trying to write code for function that will help me to deep print a java code that will help me with the construction of a given new java pojo's objects. function will get the class type and it ...
0
votes
2answers
35 views

display all array elements of a method param types

I want to get all the element of the array which contains the Param types of a method (getted dynamically with Java.reflect), here's the code if I have 2 params in the method : Method testMethod = ...
0
votes
2answers
305 views

how to pass multiple parameters to a method in java reflections

Hi i am using reflections to achieve something. I have been given class name, method name of that class and parameter values that needs to be passed to that method in a file(Take any file. Not a ...
1
vote
1answer
60 views

How to set a property value from an expression?

I need orientation on this scenario. For example I have this class: public class Schema { public string Value {get; set;} } On the front end the user will have the chance to enter the value for ...
0
votes
2answers
73 views

Add a method dynamically to an object in Objective-C?

I want to do this JavaScript in Objective-C: var obj = {}; obj.myFunc = function() { ... }; Is this possible? Or can methods only be added to a class in Objective-C and not an object? I.e. I found ...
8
votes
2answers
61 views

Attempting to bind a dynamic method on a dynamically-created assembly causes a RuntimeBinderException

I have a handy utility method which takes code and spits out an in-memory assembly. (It uses CSharpCodeProvider, although I don't think that should matter.) This assembly works like any other with ...
2
votes
1answer
85 views

How to implement dynamic feature in .net 3.5

How to implement this behavior in .NET 3.5, where there is no dynamic keyword. Guid CLSID_ShellApplication = new Guid("13709620-C279-11CE-A49E-444553540000"); Type shellApplicationType = ...
1
vote
1answer
66 views

dynamically cast and invoke in Java

I am using a bit of Reflexion in my WebApp. What I am trying to do is invoke a method dynamically after doing type case - which is also not know at compile time Here is the structure of my code: ...
-5
votes
1answer
48 views

Is it Dynamic Casting/ Converting or Reflection C#.NET

Please review my code: /* For the answer, OK to use C#.NET 4.5 - This code is to explain the matter. Can be related to Dynamic Casting/ Converting/ Reflection or Covariance & ...
0
votes
1answer
30 views

Generating a service implementation dynamically

In my company, our service implementations basically just pass the call back to the business layer, which does the actual processing. So, for example, if we have a service contract that looks like ...
2
votes
2answers
132 views

Dynamically Add C# Properties at Runtime

I know there are some questions that address this, but the answers usually follow along the lines of recommending a Dictionary or Collection of parameters, which doesn't work in my situation. I am ...
1
vote
5answers
102 views

Can C# constraints be used without a base type?

I have some classes with common properties, however, I cannot make them derive from a base type (LINQ-to-SQL limitations). I would like to treat them as if they had a base type, but not by using ...
2
votes
1answer
118 views

How to attach event to dynamic object or COM object

I think this article has the same problem with me. However, there's no workable solution for my case. I'm using Windows Media Player ActiveX in my program. For some reason, I don't want to add a ...
0
votes
2answers
88 views

cast to a variable type

Is it possible to cast from a Dynamic or an Object to a variable type? The target variable type is one generic class, only the specific data type varies. I'm looking for abstract solution, but the ...
-4
votes
3answers
160 views

C# how Set property dynamically by string?

First of all I'm not into programming, but could figure out the basic concept up to my needs. In blow code, I want to set the property by name "Gold" in something like: _cotreport.Contract = ...
7
votes
5answers
134 views

Dynamically Compose a Class in C#

Is it possible to dynamically compose a class, "Class D", from the methods contained in Classes "A, B and C"? For instance. Class A, B and C have public methods named such that they can be ...
3
votes
2answers
115 views

Creating fields dynamically java

i was wondering if their is any way to dynamically create a static field for a class during run-time using reflection or a related API. If needed i can use the java native interface to accomplish ...
0
votes
1answer
80 views

Initialize classes of dynamic types

I have a method where I need to dynamically change the class used depending on user settings as below, class dEnvelope needs to have its properties initialized as well to fill all subclasses and used ...
0
votes
0answers
81 views

Accessing dynamically created objects in C#

I have a project where I am creating dynamic objects (A list of parameters, taken from an XML file and loaded into a dictionary). The loading and object creation part is being done by using c# scripts ...
1
vote
1answer
82 views

Primitive object size in java/scala and 'as<SomePrimitive>Buffer() methods invocation

My objective is generalize shapes creation from Android OpenGL ES tutorial here: http://developer.android.com/training/graphics/opengl/shapes.html It looks like this right now: val squareCoords = ...
0
votes
1answer
75 views

Dynamically invoking RavenDB Statistics method regardless of query source

RavenDB provides 2 APIs for querying data, IDocumentQuery<T> for advanced lucene query and IRavenQueryable<T> for a strongly typed linq provider model. They share a method called ...
0
votes
1answer
50 views

Reloading dynamic code / reloading type

I ran into some issues in my current project and I'd really appreciate if someone could provide me with some insight, or possibly advice. My project is a service, that is executing user scripts. ...
2
votes
2answers
129 views

c# dynamic and extension method solution?

I have a method in Base class which calls ( by reflection to another method). type.InvokeMember(context.Request["MethodName"], System.Reflection.BindingFlags.InvokeMethod | ...
2
votes
2answers
192 views

Why reflection does not find property

I have the class: class Person { public string Name { get { return "Antonio"; } } } and the Code: IEnumerable<object> uncknownObject; uncknownObject = ...
4
votes
2answers
142 views

How to use reflection and abstract objects to dynamically load classes?

I'm building a protocol handler. The protocol may support an unknown set of request types, and I will have a single class that implements each request type. These request handler classes will extend a ...
5
votes
2answers
242 views

Passing data between objects in c#

I'm developing a Desktop Applicaiton which is akin to a plugin based system. I have a client module, that will load a DLL containing a 'Machine' object. Thereafter the 'Machine' object is manipulated ...
0
votes
3answers
66 views

Python: Invoke class & class methods by name with using eval

class Test: @staticmethod def call(): return def callMethod1(): return def callMethod2(): return var methodName='Method1' I want to invoke callMethod1 or callMethod2 in call() ...
2
votes
1answer
50 views

Init lazy property with dynamic property

I would like init a lazy property dynamically with reflection. I loop on my object properties and I want to create a lazy loading of this property like this : Lazy<propertyInfo.propertyType> = ...
0
votes
3answers
186 views

PetaPoco - Property names from a dynamic type

I'm attempting to return names of properties of returned from database dynamic type: var d = mDataAccess.Single<dynamic>("select col1 = 'asd', col2 = 'qwe'"); object o = d; var props = ...
1
vote
1answer
1k views

dynamic JContainer (JSON.NET) & Iterate over properties at runtime

I'm receiving a JSON string in a MVC4/.NET4 WebApi controller action. The action's parameter is dynamic because I don't know anything on the receiving end about the JSON object I'm receiving. public ...
1
vote
1answer
850 views

Add a property at runtime to an existing object by using propertyBuilder

An object has some properties , now at runtime -- when a condition is met .. I want to add new properties to this object . "DynamicObject" cant be ustilised since i wont be knowing the property Names ...
1
vote
1answer
191 views

Creating a method with Reflection.Emit, and then invoking it

This sounds like such an obvious thing but I am having a lot of difficulty. Basically, what I'm doing is generating a method using Reflection.Emit and I then want to call it. So far, I have the method ...
1
vote
1answer
254 views

Exception while dynamically creating assemblies using DefineDynamicAssembly on non-current AppDomain

I want to dynamically create assemblies in the integration tests for the purpose of testing some assembly manipulation classes. If I use the following code to create the testing assemblies: var ...
4
votes
1answer
95 views

Dynamically executing delegates

I have a class which is basically a message handler, it accepts requests, finds a processor for that message type, creates an appropriate response and returns it. To this end, I have created a ...
0
votes
1answer
46 views

How to dynamically generate an implementation of an interface [closed]

Let's say I have an interface that provides connection properties for a server: public interface ServerConfig { String getHostname(); int getPort(); } Is there any way to dynamically ...
4
votes
1answer
149 views

Dynamic keyword does not work with IoC but classic reflection does

I have made a little CQRS API for our system I tried to replace some reflection code by using the dynamic keyword but it does not work Each command handler is Generic CommandHandler<TCommand> ...
0
votes
1answer
95 views

Run unit tests on dynamically created DLL

I am thinking on how to implement this , and seems like my knowledge is too poor to understand the implementation. I have a code that compiles source code to DLL. Then I need somehow to run Unit ...
1
vote
2answers
121 views

General Linq Data Method

I would like to create general method that gets data from Linq based on given parameters such as: table , field1 and field2. one method that will be used instead of these 2 specific ones for example: ...

1 2 3 4 5