Tagged Questions

6
votes
4answers
1k views

call method at runtime

I am wondering if it is possible to load a .net DLL at runtime, view the methods available and execute one at runtime. If this is possible could you point me in the right direction
4
votes
1answer
222 views

Options for invoking methods dynamically in C#

I've seen quite a few questions related to how do I invoke a method like this and that. What I haven't found is a listing of the different options of how to invoke a method via reflection or any other ...
3
votes
2answers
219 views

How do I find out if a particular delegate has already been assigned to an event?

I have a command button on a winform. So, if I have something like: myButton.Click += MyHandler1; myButton.Click += MyHandler2; myButton.Click += MyHandler3; How can I tell if any particular ...
2
votes
4answers
4k views

How to do dynamic object creation and method invocation in .NET 3.5

How does the code looks that would create an object of class: string myClass = "MyClass"; Of the above type, and then call string myMethod = "MyMethod"; On that object?
0
votes
1answer
101 views

Getting “raw” xml from webservice

I'm trying to to generate web service proxy class using ServiceContractGenerator. But the problem is that i want to recieve a "raw" xml from webservice (it may be a string or XmlNode, doesnt matter). ...
0
votes
1answer
262 views

Asynchronous operations from WCF service or ASP.NET

I'm developing an application using WCF Ria services and Silverlight. Performance and scalability is a must in this project. The problem is that I have to invoke several WCF services from RIA Service, ...