Can I invoke a delegate/function pointer passed into a remote web service using ASP.NET?
Assuming you have a remote .NET web service(meaning it doesn't reside on the same server as the consuming clie开发者_开发百科nt) what will the behavior be if you attempt to pass a delegate into the web service and invoke it?
An exception at best -- delegates can't cross system boundaries in that manner.
Now, you can perhaps get to the same plays doing an asynchronous call to create a continuation of sorts . . .
精彩评论