Example #1
0
    void OnDirectServiceInitFailed(object sender, U3DXTErrorEventArgs e)
    {
        DirectRequestService service = sender as DirectRequestService;

        Log("Direct service init failed: "
            + "\n\tType: " + service.accountType.accountTypeDescription
            + "\n\tError: " + e.description);
    }
Example #2
0
    void OnDirectServiceInit(object sender, EventArgs e)
    {
        DirectRequestService service = sender as DirectRequestService;

        Log("Direct service init'd:"
            + "\n\tType: " + service.accountType.accountTypeDescription
            + "\n\tUsername: "******"\tOAuth token: " + service.account.credential.oauthToken);
        }
    }