I am going to push the message at the time which is exactly what I want,but I don't know how to do that.
Now,I can send the message to ios or Android.
There is my code.Please help me to add the time in that.
ParseClient.Initialize("XXXXXXXXX", "XXXXXXXXXXXXXXX");
var push = new ParsePush();
if (!string.IsNullOrWhiteSpace(Id))
{
push.Query = from install in ParseInstallation.Query
where install.Get<string>("NO") == Id
select install;
}
push.Data = new Dictionary<string, object> {
{"title", TitleMeg},
{"alert", AlertMeg}
};
await push.SendAsync();