I want to call some function repeatly in client's browser.
System::Timers::Timer work only on serverside how i know...
Asked
Active
Viewed 134 times
0

ostapische
- 1,572
- 2
- 12
- 26
1 Answers
0
In Silverlight you can use System::Threading::Timer or System::Windows::Threading::DispatcherTimer. If your timer callback is mainly interacting with the UI, use the DispatcherTimer, otherwise use the regular Timer.

Jimmy Schementi
- 1,239
- 8
- 17
-
Thank you. All classes from ".NET Framework Class Library for Silverlight" http://msdn.microsoft.com/en-us/library/cc838194(v=vs.95) are realized in ironruby? – ostapische Jun 12 '12 at 11:35
-
Yes, all are accessible from IronRuby. – Jimmy Schementi Jun 13 '12 at 05:41