Exemple #1
0
    void AuthenticateWbidCallback(object sender, AuthenticateWbidCompletedEventArgs result)
    {
        if (this == result.UserState && currentPage == menuPage.wbidWaiting)
        {
          if (null == result.Error)
          {
        amsTicket = result.Result;
        authenticateWbidResult = "Success:";
          }
          else
          {
        amsTicket = result.Error.Message;
        authenticateWbidResult = "Error:";
          }

          currentPage = menuPage.wbidLoginComplete;
          Debug.Log(amsTicket);
        }
    }
Exemple #2
0
    void AuthenticateWbidCallback(object sender, AuthenticateWbidCompletedEventArgs result)
    {
        if (this == result.UserState && currentPage == menuPage.wbidWaiting)
        {
            if (null == result.Error)
            {
                amsTicket = result.Result;
                authenticateWbidResult = "Success:";
            }
            else
            {
                amsTicket = result.Error.Message;
                authenticateWbidResult = "Error:";
            }

            currentPage = menuPage.wbidLoginComplete;
            Debug.Log(amsTicket);
        }
    }
Exemple #3
0
 void AuthenticateWbidCallback(object sender, AuthenticateWbidCompletedEventArgs args)
 {
     Debug.Log("AuthenticateWbid Callback Received");
     Debug.Log("Errors: " + args.Error);
     Debug.Log("Ticket: " + args.Result);
 }
 void AuthenticateWbidCallback(object sender, AuthenticateWbidCompletedEventArgs args)
 {
     Debug.Log("AuthenticateWbid Callback Received");
     Debug.Log("Errors: " + args.Error);
     Debug.Log("Ticket: " + args.Result);
 }