c# - Co Browsing using Silverlight -


i want implement silverlight based component co-browsing.

can please me started?

thanks

okay, first things first. i'm going assume figured out how commands "admin" "client". if not true, let me know.

second: outrageously difficult thing build

third: here's start ;-)

to use default sl4 webbrowser component, need run application out-of-browser elevated trust. should set first.

in test app, added webbrowser component , subscribed loadcompleted event.

in eventhandler can use like:

void webbrowser1_loadcompleted(object sender, system.windows.navigation.navigationeventargs e) {      //pseudo code event update clients      onadminnavigated(e.uri);  } 

clientside use like:

void adminnavigated(mycustomnavigationeventargs e) {   clientbrowser.navigate(e.uri); } 

hope helps.


Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -