What're differences between :
System . Windows . Browser . HtmlPage . Window . Eval ( ... );
System . Windows . Browser . HtmlPage . Window . Invoke ( ... );
What I reached till now is
Eval :
- Apply JavaScript code applied withen it. ( Code written in Silverlight )
- Invoke JavaScript global methods without parameters . ( Methods written in JavaScript )
Invoke :
- Call JavaScript global methods with/out parameter/s. ( Methods written in JavaScript )
If I'm true, are there other differences ?
I really need a simple but powerful difference example.
MSDN References :
Finally, Which function doing a real injection ?
Regards,