windows runtime - Text sharing not working as expected -


protected void ondatarequested(datatransfermanager sender, datarequestedeventargs e) {     e.request.data.properties.title = "title";     e.request.data.properties.description = "description";              e.request.data.settext("description"); } 

i sharing app link link this.

what expect do:

when sharing text message app

message: description

when sharing email app

subject: title

message: description

what doing:

when sharing text message app

message: title description

when sharing email app

subject: title

message: description

i want share description when user share using message. appending title also.


Comments

Popular posts from this blog

c# - SharpDX Toolkit models rendering inside out -

c# - ajax - How to receive data both html and json from server? -