Example #1
0
 public static bool SendMessage(User user, string type, object message)
 {
     var conns = from u in Users
                 where u.Value.Id == user.Id
                 select u.Key;
     QueueClient client = AzureServiceHelper.GetQueueClient("message");
     var bMessage = new BrokeredMessage();
     bMessage.Properties["ConnectionIds"] = String.Join(",", conns.ToArray());
     bMessage.Properties["Type"] = type;
     bMessage.Properties["Content"] = Json.Encode(message);
     client.Send(bMessage);
     return true;
 }
Example #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Users EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToUsers(User user)
 {
     base.AddObject("Users", user);
 }
Example #3
0
 /// <summary>
 /// Create a new User object.
 /// </summary>
 /// <param name="id">Initial value of the Id property.</param>
 /// <param name="username">Initial value of the Username property.</param>
 /// <param name="password">Initial value of the Password property.</param>
 public static User CreateUser(global::System.Int32 id, global::System.String username, global::System.String password)
 {
     User user = new User();
     user.Id = id;
     user.Username = username;
     user.Password = password;
     return user;
 }