Non-static method requires a target
Posted by Ronnie Diaz
In my specific situation where I received this error, I was able to resolve it by simply changing “null” to the object containing the method which needed to be call.
This error indicates a use of reflections that can easily be confusing, but is very simple to resolve.
The specific resolution in the (StackOverflow) example in the referenced link below did not apply to my situation, but helped me quickly understand what caused the error and come to quick resolution by simply reading through the responses.
Example code from reference below:
public static T Test<T>(MyClass myClass) where T : MyClass2, new() { var result = new T(); //... }
For specific code example where I encountered this message and how I was able to resolve, see the snippet below or my full post Call Parent Page from User Control.
Quick comparison where I encountered the error:
if (mi!=null) mi.Invoke(null, new Object[] {sender,e }); //throws indicated error if (mi!=null) mi.Invoke(this.Page, new Object[] {sender,e }); //runs through clean
References
“Call Parent Page from User Control”, https://ronniediaz.com/2011/07/15/call-parent-page-from-user-control/
StackOverflow, http://stackoverflow.com/questions/3577407/non-static-method-requires-a-target-in-propertyinfo-setvalue
About Ronnie Diaz
Ronnie Diaz is a software engineer and tech consultant. Ronnie started his career in front-end and back-end development for companies in ecommerce, service industries and remote education. This work transitioned from traditional desktop client-server applications through early cloud development. Software included human resource management and service technician workflows, online retail e-commerce and electronic ordering and fulfillment, IVR customer relational systems, and video streaming remote learning SCORM web applications. Hands on server experience and software performance optimization led to creation of a startup business focused on collocated data center services and continued experience with video streaming hardware and software. This led to a career in Amazon Prime Video where Ronnie is currently employed, building software and systems which stream live sports and events for millions of viewers around the world.Posted on July 15, 2011, in Programming & Development and tagged .net, c#, class, function, instantiate, method, methodinfo, mi, minfo, pi, pinfo, prop, property, propertyinfo, propinfo, reflection, reflections, static. Bookmark the permalink. Leave a comment.
Leave a comment
Comments 0