0
votes
1answer
59 views

How to get event name in called method

I am using reflection to add an event handler to an event : var eventInfo = type.GetEvent(eventName); MethodInfo mi = GetType().GetMethod("TestMethod", BindingFlags.Instance | ...
4
votes
1answer
59 views

Create a constructor call using Reflection Emit that passes a Func<> as a parameter

I'm hoping someone can point me in the right direction with the following problem. I am working on a project where the types are generated using Reflection.Emit, all has been working fine until a ...
8
votes
2answers
74 views

How to create a delegate from a MethodInfo?

I need a method that takes a MethodInfo instance representing a non-generic static method with arbitrary signature and returns a delegate bound to that method that could later be invoked using ...
0
votes
1answer
34 views

Exception was unhandled when calling method via reflection

Using a delegate, I'm calling an objects ("o") method ("ProcessElement") which returns an int: int result; object o; ... if (o != null) { try { Func<int> processElement = ...
0
votes
1answer
47 views

How to pass an arbitrary function with some bound parameters to another function?

I have a generic function CallLater that should accept an arbitrary other function and possibly call it later with some parameters. All kind of functions should be supported - static, instance, ...
2
votes
1answer
91 views

Get non-static method name inside static method

I am trying to do something rather simple but not sure if there's any way around simply creating a dummy instance of my class. I am trying to simply get the method name of a non-static method using ...
8
votes
3answers
143 views

Delegate for any method type - C#

I want to have a class that will execute any external method, like this: class CrazyClass { //other stuff public AnyReturnType Execute(AnyKindOfMethod Method, object[] ParametersForMethod) ...
4
votes
2answers
133 views

Dynamically invoke method in c#

I want to be able to store function reference and disregard arguments until it actually is used. Here's what I'd like for it to look like: StoreType f=MyFunction; ....... var ...
2
votes
1answer
103 views

.Net instance function pointer

Can I make a pointer to an instance function when I don't have the instance declared yet? Right now I'm using reflection to call my methods but it seems this could be easier with a delegate of sorts. ...
2
votes
1answer
68 views

How to best structure this API to store generic delegates for later execution

I have a custom MVC framework in which I'm overhauling the routing API. I'm trying to think of a clean way to segregate "setup" and "execution" in my framework which makes extensive use of delegates ...
0
votes
1answer
66 views

How to use .NET Reflection in order to add new Event Handler - one small issue, non-standard approach is needed

It was long time ago when i asked a question here last time :) Now it's time to ask again, as i no any ideas ho to implement what i need... One important thing to note - i'm writing application for ...
0
votes
3answers
112 views

Attaching an event handler to a generic type initialized using reflection at runtime with unknown type parameter

Please have a look at code below, which is based on the assumption that you have a controller class Controller. It is a generic class with constraint CGeneric where T:IRecord, two concrete record ...
1
vote
1answer
172 views

IL to c# conversion

I'm working on a project which has very little in the way of testing and where large amounts of the code has recently been changed. In particular code has been ported from using one data provider to ...
0
votes
2answers
84 views

Binding error on CreateDelegate

I'm having a fun time trying to assign a delegate from a different assembly to an object which has been loaded from the same assembly. loader.LoadedGestures is an object[] - each object in it comes ...
2
votes
2answers
161 views

Get MethodInfo for any method with any signature (delegate for any signature)

I want to write a method that will analyze custom attributes of any method (with any number of arguments and any return type) knowing only method info. This function will check if method has ...
0
votes
1answer
75 views

Make a generic delegate instance from a System.Type

Is there a way to have a delegate instance of an open generic type parameter like so? Action<T> SomethingHappened; The compiler is giving me an error. I might have asked this question every ...
3
votes
1answer
234 views

Delegate.CreateDelegate is unable to bind to static generic methods

I'm trying to use Delegate.CreateDelegate [MSDN link] to bind to a static generic method, but the binding fails. Here is the PoC code: public static class CreateDelegateTest { public static void ...
1
vote
1answer
68 views

Efficient way to call a method dynamically based on its name without reflection

Let me try to simplify my question: I have four classes: Admins, Users, Players, Roles The database returns names of methods that I will need to execute. For example if Admins_GetName is returned ...
1
vote
2answers
138 views

Pass a Func<T> into generic method via reflection [closed]

I have a class that implements class MessageBus { void Subscribe<T>(Func<T,Task> onMessage) {...} } In my code, I want to dynamically subscribe with several different message types. ...
0
votes
1answer
145 views

Create a delegate in an AppDomain

How do I, using reflection, create an instance of a delegate in an application domain? I have a C++/CLI DLL from which I dynamically load a C# DLL. Since the C# DLL is located on a network share, I ...
4
votes
1answer
92 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
3answers
47 views

how do I invoke a passed Method? This is delegation, right?

Ok, I know this is been asked and answered hundreds of times, and I know I'm probably going to get the "go search for the answer" response, but I'm going to try asking anyway. Very simply, I want to ...
2
votes
1answer
353 views

CreateDelegate instead of Reflection for SetValue

I tried to implement Jon Skeet's solution for this question posted on this blog post to substitute the SetValue method with a non-reflection method using delegates. The difference from the solution ...
3
votes
1answer
139 views

Is there a way to simplify this reflective delegate code in C#?

In this response, I came up with the following helper method that could be reused by different Task creators to convert events into task completion sources. // Helper method static Task<T> ...
3
votes
2answers
167 views

How to implement a “convert using this function” custom attribute in .Net?

I'm building some stuff out using Attributes. One thing I'd really like to implement as an attribute is a convert a string to this property's type using this function. Right now, I have this: ...
1
vote
1answer
65 views

How can I point a delegate to a method obtained with reflection

I dynamically load an assembly as: var assembly = Assembly.LoadFile("PathOFMyDll"); anyways that assembly has the static method Filter inside the class DynamicClass. So once I have that assembly I ...
2
votes
1answer
207 views

[Delegate].CreateDelegate to set property performance

This is a serializer I've been working on that serializes datarow's into objects based on some mapped property attributes. I read a number of posts related to using [Delegate].CreateDelegate to ...
6
votes
4answers
833 views

How can I dynamically create an Action<T> at runtime?

I want to be able to do the equivalent to the following at runtime: var action = new Action<ANYTHING AT RUNTIME>(obj => Console.WriteLine("Called = " + obj)); I know I need to get the ...
1
vote
1answer
125 views

TargetException thrown while using reflection to add an event handler

I want to invoke a BackgroundWorker thread when a WebClient object calls back. The method which I target to run on this BackgroundWorker is not fixed so I need to programmatically target a specified ...
1
vote
2answers
253 views

Strange behavior with DynamicInvoke and Invoke

I read this post and I tried to do the same but I came across a very strange behavior when comparing the del.DynamicINvoke(args) Vs. del(args) Update So after Jon and usr comments i post now new ...
1
vote
2answers
155 views

Making a compiled constructor expression with just the Type of the type

I've been playing around, partially reinventing wheels so that I can understand how proper wheels spin round. Consider this generic function for compiling and returning the default constructor of a ...
1
vote
4answers
516 views

How to create delegate from lambda expression with parameters?

I'm trying to create an instance of a RelayCommand with parameters dynamically: public class RelayCommand<T> : ICommand { #region Declarations private readonly Predicate<T> ...
-2
votes
1answer
117 views

Anonymous Delegate Naming Convention

If I were to create an anonymous delegate such as: var x = new Func(x => x != null) What is the result of: x.Method.FullName What kind of naming convention does it follow?
0
votes
1answer
125 views

How to reference internal delegate of a different assembly in C#

I have following code public class MyClass{ internal static Dictionary<string, ActivityManager.TagSerializer> TagHandlers = new Dictionary<string, ...
2
votes
4answers
160 views

Can I get a method attribute from a generic delegate?

I'm sure there's an answer already on the forum somewhere, but I haven't been able to find it so far. As per this example I am using anonymous methods in conjunction with a delegate in order to have ...
8
votes
2answers
322 views

Loading an assembly and applying a predicate on its types in another appdomain

Please read the entire question. I have a unique situation with several constraints that I'd like to solve. In my code I have an expression tree which is compiled to a Predicate<System.Type>. ...
4
votes
1answer
126 views

How to serialize a delegate that points to the base of an overridden virtual method?

While other questions about using reflection to bypass all safeties and directly call the base class's implementation of an overridden method have generally been met with derision and calls to ...
2
votes
2answers
116 views

How do I via reflection in C# call a method that takes a 'method group' ie. Action<> or Func<>

I have a method with this signature, and another method that will be the used as the Action ProcessFile(Uri uri, Action<Uri> callWhenDone); void WhenDone(Uri uri); Now I'm trying to use the ...
2
votes
2answers
536 views

CreateDelegate refusing to create delegates for instance methods

This is a kind of follow-on to a prior thread. I'm building a small wrapper to do upcalls to dynamically typed methods provided by my users. The scheme works well... but only for static methods. ...
5
votes
3answers
342 views

Is the backing field of a compiler generated event always guaranteed to use the same name as the event?

C# allows us to create custom event accessors. Action _custom; public event Action Custom { add { _custom = (Action)Delegate.Combine( _custom, value ); } remove { _custom = ...
4
votes
2answers
172 views

Subscribing an Action to any event type via reflection

Consider: someControl.Click += delegate { Foo(); }; The arguments of the event are irrelevant, I don't need them and I'm not interested in them. I just want Foo() to get called. There's no obvious ...
1
vote
1answer
68 views

Open Delegate fails when trying to access Int or DateTime property

I have been testing out using delegates instead of reflection for some object sorting and it was working good for string properties, but if I try an Int (or DateTime) it fails and throws Error ...
2
votes
1answer
92 views

Create a method which matches a reflected type

I am utilising a 3rd party .net dll, which I am making calls to. I am simplifying my code, but it's something like this. // The assembly has already been loaded into 'ass' Type params = ...
6
votes
6answers
491 views

replay a list of functions and parameters

I have a series of functions that I want to have the following functionality. When the function is called, add itself to a list of functions remembering the parameters and values Allow the list of ...
2
votes
2answers
252 views

C# delegates, dlls, dynamic stuff [closed]

Heres the situation I'm trying to create a program that will read a string and use that string to dll a function in a dll. See this [UnmanagedFunctionPointer(CallingConvention.Cdecl)] private ...
1
vote
1answer
140 views

WinForms/.NET: How to get the event handler attached to an event?

How can i get the event handler attached to an event? pseudocode, for example's sake: public static EventHandler GetChangeUICuesEventHandler(Control SomeControl) { EventHandler ...
1
vote
6answers
126 views

delegate or reflection?

I have a class with a method in which a string will be passed. That method will do some things to that string and it then passes the string to a certain object which can do other things with the ...
1
vote
1answer
57 views

How to find methods in the same class from a passed delegate

I have a method with a custom attribute that lists other methods in the same class that it can call. I'm passing the called method to another class function that will read the attribute and pick one ...
3
votes
4answers
760 views

Expose Action<T> as Action<object>

I'm creating a framework that contains a wrapper around a library (specifically SharpBrake) that performs all interaction with SharpBrake via reflection so there's no hard dependency on the library to ...
2
votes
2answers
210 views

Reflection, generics, eventhandlers and delegates problem

I’m struggling with reflection, generics, eventhandlers and delegates. I have a Type which is derived from AsyncCompletedEventArgs. I would like to create a generic EventHandler instance with this ...

1 2 3