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
Post a Comment