How can we pass e.channel Uri to a web service from windows phone -


void pushchannel_channeluriupdated(object sender, notificationchannelurieventargs e)         {              dispatcher.begininvoke(() =>             {                 // display new uri testing purposes.   normally, uri passed web service @ point.                 system.diagnostics.debug.writeline(e.channeluri.tostring());                 //messagebox.show(string.format("channel uri {0}",                 //    e.channeluri.tostring()));                  servicereference1.service1client objserviceclient = new servicereference1.service1client();                   objserviceclient.insertnotificationurlcompleted +=                     new eventhandler<insertnotificationurlcompletedeventargs>(               });         } 

in above code, servicereference1 web service, want send e.channel uri web service. how can pass uri web service?


Comments

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -