Beispiel #1
0
    public void StartAuthentication(bhClowdDriveAPI.Authentication_Callback callback)
    {
        if (_type == eCloudType.NotSelected)
        {
            return;
        }

        switch (_type)
        {
        case eCloudType.bCloudDrive:
        {
            _bDriveAPI.StartAuthentication(callback);
        }
        break;

        case eCloudType.GoogleDrive:
        {
            _bGoogleAPI.StartAuthentication(callback);
        }
        break;
        }
    }