/**
  * @brief Request EveryNetmarble frineds.
  *
  * @param callback Callback to deal with a reponse to the request.
  * @see RequestFriendsDelegate
  */
 public static void RequestFriends(RequestFriendsDelegate callback)
 {
     Log.Debug("[EveryNetmarble] RequestFriends");
     EveryNetmarbleImpl.RequestFriends(callback);
 }
 public static void SetEnableAuthenticationView(bool enable)
 {
     Log.Debug("[EveryNetmarble] SetEnableAuthenticationView");
     EveryNetmarbleImpl.SetEnableAuthenticationView(enable);
 }
 /**
  * @brief Request my profile.
  *
  * @param callback Callback to deal with a reponse to the request.
  * @see RequestMyProfileDelegate
  */
 public static void RequestMyProfile(RequestMyProfileDelegate callback)
 {
     Log.Debug("[EveryNetmarble] RequestMyProfile");
     EveryNetmarbleImpl.RequestMyProfile(callback);
 }