0
votes
4answers
54 views
Asynchronous runtime method invocation
I am loading some assemblies at run time and invoking methods on them using Reflections (MethodInfo.Invoke).
Now I want to make these calls asynchronous. So I am thinking of using …
0
votes
2answers
71 views
How to get MethodInfo of a generic method on a non generic .NET type?
Dear ladies and sirs.
I have this little problem, that I cannot figure out which arguments to pass to Type.GetMethod in order to get back the MethodInfo of a generic method on a n …
5
votes
3answers
106 views
Fast Access to the type/method/… that holds an Attribute in C#
I have made a custom Attribute here named AAtribute, and for instance a class called B where one or more methods use the attribute. Is it possible to get the MethodInfo of the meth …
0
votes
2answers
38 views
Translating a MethodInfo object obtained from an interface type, to the corresponding MethodInfo object on an implementing type in C#?
The question I have is this: If I have the MethodInfo object, for a method, obtained from an interface type, and I also have the Type object for a class that implements this interf …
0
votes
3answers
146 views
How can I get fields used in a method (.NET) ?
In .NET, using reflection how can I get class variables that are used in a method?
Ex:
class A
{
UltraClass B = new(..);
SupaClass C = new(..);
void M1()
{
…
0
votes
2answers
261 views
How to get MethodInfo of interface method, having method info of class method implementing the interface?
I have a MethodInto of interface method and type of a class that implements the interface.
I want to find MethodInfo of the class method that implements the interface method.
The …
-1
votes
0answers
43 views
Determine what method a MethodInfo represents
Is there any simple way to determine what method on a given instance would be invoked by a specific MethodInfo if you where to call the Invoke method on that MethodInfo using the i …
0
votes
0answers
56 views
AccessViolationException on MethodInfo.ToString()
Getting an AccessViolationException when calling ToString() on my MemberInfo.
I suspect something is holding onto the Type information on one of my methods parameters and causing t …
1
vote
1answer
155 views
get expression of method in Expression tree
i want to create the following query in expression trees:
var test = from datarow in tempResults
where datarow.Field<String>("ColumnName") == "Column"
…
0
votes
1answer
116 views
MethodInfo.Invoke sometimes returns null and sometimes returns value
Hi all,
I'm working on an asp.net MVC application.
I have a class that wraps a repository that fetches data from a db using simple linq statement. I've written a decorator class …
3
votes
3answers
179 views
Retrieving the name of the the invoked method executed in a Func
I would like to get the name of the method that is being delegated as a Func.
Func<MyObject, object> func = x => x.DoSomeMethod();
string name = ExtractMethodName(func); …
5
votes
2answers
294 views
Builds a Delegate from MethodInfo ?
After googling and landing on SO and having read this other question
Is it possible to build a correct Delegate from a MethodInfo if you didn't know the number or types of para …
0
votes
1answer
267 views
C# MethodInfo getReturnType
I created an instance of MethodInfo:
MethodInfo theMethod = typeof(Reciever).GetMethod("methodName", parameterTypes);
Now I want to know if theMethod's return type is void. How? …
1
vote
2answers
129 views
How to determine if the MethodInfo is an override of the base method
I'm trying to determine if the MethodInfo object that I get from a GetMethod call on a type instance is implemented by the type or by it's base.
For example:
Foo foo = new Foo(); …
0
votes
2answers
420 views
Invoke method by MethodInfo
I want to invoke methods with a certain attribute.
So I'm cycling through all the assemblies and all methods to find the methods with my attribute. Works fine, but how do I invoke …
