/// <summary>
 /// Gets whether the given user is linked to a Facebook account. This can only be used on
 /// the currently authorized user.
 /// </summary>
 /// <param name="user">The user to check.</param>
 /// <returns><c>true</c> if the user is linked to a Facebook account.</returns>
 public static bool IsLinked(ParseUser user) {
   return user.IsLinked("facebook");
 }
Exemplo n.º 2
0
 /// <summary>
 /// Gets whether the given user is linked to a Facebook account. This can only be used on
 /// the currently authorized user.
 /// </summary>
 /// <param name="user">The user to check.</param>
 /// <returns><c>true</c> if the user is linked to a Facebook account.</returns>
 public static bool IsLinked(ParseUser user)
 {
     return(user.IsLinked("facebook"));
 }