public MQKeySet RequestMQKeys(string strTokenType, string strAccessToken)
        {
            this.m_Logger.Log("Mocking RequestMQKeys Raised", Category.Info, Priority.None);

            MQKeySet MockMQKeySet = new MQKeySet();

            MockMQKeySet.Account  = "*****@*****.**";
            MockMQKeySet.Message  = "successed sign in";
            MockMQKeySet.MqKey    = "*****@*****.**";
            MockMQKeySet.MqSid    = "*****@*****.**";
            MockMQKeySet.NickName = "Anonymous User";
            MockMQKeySet.Status   = 200;
            MockMQKeySet.Type     = 1;
            MockMQKeySet.UserSid  = Guid.NewGuid().ToString();

            return(MockMQKeySet);
        }
Exemple #2
0
 public ProfileViewModel()
 {
     this.ProfileModel = AuthRepository.MQKeyInfo;
 }
Exemple #3
0
 private void SetMQKeyInfo(MQKeySet mqKeyInfo)
 {
     this.MQKeyInfo = mqKeyInfo;
 }
Exemple #4
0
 private void IntializeRecommendContents(MQKeySet mqKeyInfo)
 {
     this.SetMQKeyInfo(mqKeyInfo);
     this.UpdateRecommendUsers();
 }