Tagged Questions
The methodinfo tag has no wiki summary.
19
votes
3answers
3k 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 parameters at compile ...
17
votes
2answers
459 views
The uncatchable exception, pt 2
Update: I've filed a bug report on Microsoft Connect: https://connect.microsoft.com/VisualStudio/feedback/details/568271/debugger-halting-on-exception-thrown-inside-methodinfo-invoke#details
If you ...
10
votes
3answers
1k views
Finding the hosting PropertyInfo from the MethodInfo of getter/setter
I do some type analysis in runtime using Reflection. If I have a MethodInfo instance,
how can I figure out if this is a "real" method or is a getter/setter method of a property? And if it is a ...
9
votes
5answers
992 views
Using reflection to check if a method is “Extension Method”
As part of my application I have a function that receives a MethodInfo and need to do specific operations on it depending if that method is "Extension Method".
I've checked the MethodInfo class and I ...
7
votes
1answer
125 views
Traverse a c# method and anazlye the method body
Whats the easiest way to traverse a methodinfo in c#?
I want to traverse the method body and find field-references and such and retrieves the types.
In System.Reflection there is:
...
7
votes
6answers
1k views
Can you get a Func<T> (or similar) from a MethodInfo object?
UPDATE: The suggestion to use an expression tree to construct a lambda using the given MethodInfo, in conjunction with the Expression<TDelegate>.Compile method, proved to be a gold mine in my ...
7
votes
1answer
175 views
Checking a MethodInfo against a delegate
How can I determine if a MethodInfo fits a distinct Delegate Type?
bool IsMyDelegate(MethodInfo method);
Edit:
I'm given a MethodInfo object and want to know if it fits the delegate interface.
...
6
votes
3answers
223 views
How to do automatic type conversion for parameters when invoking a method using reflection in C#?
I have a need to invoke methods on a type through reflection using C#.
At run-time, my data will consist of a Dictionary containing name/value pairs. The names in the Dictionary will correspond to ...
6
votes
3answers
409 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 method that holds the ...
5
votes
1answer
119 views
Is it safe to cache the results of a parameterless method using the method's MethodHandle as a key?
In a WCF client application, there are a number of parameterless methods for which we'd like to cache the results - GetAllFoo() , GetAllBar(). These are used to populate dropdowns and the like, and ...
5
votes
3answers
269 views
How to read a method body with reflection
Is it possible to find out anything about a Method body with reflection?
How?
5
votes
2answers
407 views
Why does VS2010 always break on exception from MethodInfo.Invoke?
I have a try/catch around a MethodInfo.Invoke(o,null), and VS2010 is set to never break on Exceptions, but unfortunately the debugger continues to break inside the Invoked method. The method is ...
5
votes
2answers
2k views
How to get MethodInfo of interface method, having implementing MethodInfo of class method?
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 simple ...
4
votes
1answer
68 views
Get methodinfo for Enumerable.DefaultIfEmpty
I'm building some Linq Expression and trying to get hold of MethodInfo for IEnumerable.DefaultIfEmpty (http://msdn.microsoft.com/en-us/library/bb360179.aspx). What seemed to be an easy task but I'm ...
4
votes
2answers
273 views
Optimized way to get “get_Item” MethodInfo
Right now, I have: targetType.GetMethod("get_Item", BindingFlags.Instance)
Is there better?
4
votes
3answers
844 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();
MethodInfo ...
4
votes
4answers
2k views
C# referencing desired overloaded generic method
given
public Class Example
{
public static void Foo< T>(int ID){}
public static void Foo< T,U>(int ID){}
}
Questions:
1) Is it correct to call this an "overloaded generic method"?
...
3
votes
4answers
173 views
How to determine if ParameterInfo is of generic type?
I have a MethodInfo of a GenericMethodDefinition. Such as: CallMethod<T>(T arg, string arg2). The GetParameters() method will give me two ParameterInfo objects, the first of which is generic, ...
3
votes
2answers
1k views
How to test if MethodInfo.ReturnType is type of System.Void?
Using reflection to obtain a MethodInfo, I want to test if the type returned is typeof System.Void.
Testing if it is System.Int32 works fine
myMethodInfo.ReturnType == typeof(System.Int32)
but
...
3
votes
5answers
957 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()
{
B.xyz(); // it ...
3
votes
3answers
333 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); // should equal ...
2
votes
3answers
172 views
How to convert value types returned by the MethodInfo.Invoke method, to their proper type?
I'd like to invoke a method that returns a struct, using the MethodInfo.Invoke method. However, the returned variable's type of this metod is object, which cannot be cast to a struct.
(found that, as ...
2
votes
2answers
101 views
Can the .NET MethodInfo cache be cleared or disabled?
Per MSDN, calling Type.GetMethods() stores reflected method information in a MemberInfo cache so the expensive operation doesn't have to be performed again.
I have an application that scans ...
2
votes
2answers
142 views
How would I use reflection to call all the methods that has a certain custom attribute?
I have a class with a bunch of methods.
some of these methods are marked by a custom attribute.
I would like to call all these methods at once.
How would I go about using reflection to find a ...
2
votes
1answer
100 views
Retrieve a MethodInfo on an int
Is it possible to retrieve the MethodInfo for * operator on an Int32?
I've tried this code but without success (it returns null):
MethodInfo mi = typeof(System.Int32).GetMethod("op_Multiply");
...
2
votes
2answers
1k views
MethodInfo, CreateDelegate and Generic Methods
Thanks to Jon Skeet's answer in this question I have the following working:
public delegate BaseItem GetItemDelegate(Guid itemID);
public static class Lists
{
public static GetItemDelegate ...
2
votes
2answers
1k views
How to get MethodInfo of a generic method on a non generic .NET type?
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 non generic type.
Specifically, I have this ...
2
votes
1answer
838 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"
...
2
votes
1answer
745 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
1answer
64 views
Why isn't _MethodInfo interface called IMethodInfo in .NET?
I was just reading through the MethodInfo type and came across this type and thought it was some sort of unmanaged class of some sort at first. Then saw that it's actually an interface.
Anyone knows ...
1
vote
2answers
148 views
What is the most efficient way to ask a MethodInfo how many parameters it takes?
What is the most efficient way to ask a MethodInfo if it accepts parameters and, if so, how many?
My current solutions would be: methodInfo.GetParameters().Any() and ...
1
vote
1answer
276 views
Using reflection to get generic MethodInfo without using a string name and the generic parameters are resolved at runtime
I am writing a sub dependency resolver for castle windsor. The resolver returns an object that implements a generic interface. The generic parameters are resolved at runtime and factory is used to ...
1
vote
1answer
163 views
MethodInfo and Delegates
I am using dotnet 2.0
I know that with an EventInfo value, you can loop through an Assembly's Types and find all the methods that match the EventInfo delegate definition ( EventInfo.EventHandlerType ...
1
vote
3answers
864 views
System.Reflection.MethodInfo.Invoke and multiple threads
Hi how do i call System.Reflection.MethodInfo.Invoke() with paramters with threads.
For instance..
Say I have a method that allows you to pass in a string that represents a
class name and calls ...
1
vote
4answers
579 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 ...
1
vote
2answers
436 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 interface, but it ...
1
vote
2answers
4k 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 a certain method ...
0
votes
2answers
50 views
How to pass a parameter as a reference with MethodInfo.Invoke
How can I pass a parameter as a reference with MethodInfo.Invoke?
This is the method I want to call:
private static bool test(string str, out byte[] byt)
I tried this but I failed:
byte[] rawAsm ...
0
votes
1answer
56 views
MethodInfo.Invoke autocast from Class to Interface not working
I am trying to call a class method through reflection.
public class A
{
public string B(IWork WorkToDo)
{
return WorkToDo.ToString();
}
}
Class "Work" inherits from "IWork".
...
0
votes
1answer
32 views
Setting methodInfo.IsDefined() to true with C#
I have a methodInfo from mymethod method of Example class.
internal class Example
{
public static void mymethod(string str1, ref string str2, out string str3)
{
....
MethodInfo mm ...
0
votes
1answer
29 views
Get methods and classes referenced by method
Using .NET 4+ Is there any way to find all the methods that are called by all the code paths for a method?
Ideally I'm looking for something that would let me get the inner loop in:
For Each Method ...
0
votes
1answer
713 views
Passing LPSTR between Win32 DLL and C# using MethodInfo.Invoke
I am working on a project that needs to be able to call functions in Win32 DLLs. However, the name of the DLL, function, and data types of all arguments and return type are not known at compile time, ...
0
votes
0answers
72 views
Get the line numbers of the method signatures w/o using a c# parser
Much related to this question:
for fields
which describes how I get the line #s for methods. However... I can only obtain the line #s of the statements within the method using this approach. How can ...
0
votes
1answer
90 views
One method to read parameters, properties and return types at runtime using C#
With continutation to my earlier thread Using reflection read properties of an object containing array of another object. I am hoping to make this wonderful method from EvgK a generic method that can ...
0
votes
1answer
264 views
System.Reflection.MethodInfo.Invoke and multiple threads ( with return type )
I have been looking through the other questions on the site and have found this post.
stack overflow original post
Ben Voigts answer is very useful and I believe I have it working in my system.
The ...
0
votes
2answers
443 views
Use Reflection to call generic method on object instance with signature: SomeObject.SomeGenericInstanceMethod<T>(T argument)
How do I call SomeObject.SomeGenericInstanceMethod<T>(T arg) ?
There are a few posts about calling generic methods, but not quite like this one. The problem is that the method argument ...
0
votes
2answers
298 views
Parsing to primitive types, based on user input in c#
My code to do this uses reflection and strings that I give it, instead of user input. Ultimately I would like the user to be able to say "float" "2.0" and have the computer say, yeah, that's a float, ...
0
votes
1answer
154 views
Silverlight Reflection | GetCurrentMethod with passed parameters
I want to print the current method call (incl. return value) to the Visual Studio Output like this:
public object Convert(object[] values, Type targetType, object parameter, CultureInfo culture)
{
...
0
votes
0answers
92 views
Determine if a Property is Overloaded
I am looking for a little help and comment. I have been working for weeks to create an object browser. I have had some luck, but I am stuck on getting an Overloads designation for properties. Using ...
0
votes
2answers
103 views
MethodInfo.Invoke requires admin on windows 7?
So I am loading an assembly at runtime and I also am using generics depending on the assembly type. To get the right type, each DLL is implementing a factory that I expect to be there which ...