private async void CheckFollowingMethod()
        {
            if (String.IsNullOrEmpty(_userId) || "self" == _userId)
            {
                return;
            }

            var result = await _people.CheckFollowingAsync(LoginUser.Current.Token, _userId, true);

            Loading = false;

            if (result == null)
            {
                return;
            }

            if (null != result.Error)
            {
                Debug.WriteLine(Regex.Unescape(result.Error.Message));
                return;
            }

            Following = result.Result;
        }