1

我正在为我的应用程序开发备份功能,它应该检查所需的文件夹是否已经存在,否则创建它。

由于我使用的是 VB.Net,因此我无法使用 GetCompleted 事件(仅在 C# 中可用,我对此没有经验)。

我当前在 FolderExistsOrCreate 函数中的代码是这样的:

    Private Async Function FolderExistsOrCreate(ByVal Name As String) As System.Threading.Tasks.Task(Of String)
        Dim ID As String = Nothing
        Dim firstRecheck = True
ReCheck:
        Try
            _message = "Looking for folder..."
            NotifyPropertyChanged("Message")
            NotifyPropertyChanged("SkyDrive")
            _client = New LiveConnectClient(_session)
 'it stops here and does not go further
            Dim res = Await _client.GetAsync("me/skydrive/files?filter=folders,albums")
            Dim folderData As Dictionary(Of String, Object) = DirectCast(res.Result, Dictionary(Of String, Object))
            Dim folders As List(Of Object) = DirectCast(folderData("data"), List(Of Object))

            For Each item As Object In folders
                Dim folder As Dictionary(Of String, Object) = DirectCast(item, Dictionary(Of String, Object))
                If folder("name").ToString = Name Then
                    ID = folder("id").ToString()
                    _message = "Folder exists..."
                    NotifyPropertyChanged("Message")
                    NotifyPropertyChanged("SkyDrive")
                End If
            Next

            If ID = Nothing Then
                If firstRecheck = False Then
                    _message = "Creating folder failed..."
                    NotifyPropertyChanged("Message")
                    NotifyPropertyChanged("SkyDrive")
                    Return Nothing
                End If
                _message = "Creating folder..."
                NotifyPropertyChanged("Message")
                NotifyPropertyChanged("SkyDrive")
                Dim newFolderData As New Dictionary(Of String, Object)
                newFolderData.Add("name", Name)
                _client = New LiveConnectClient(_session)
                res = Await _client.PostAsync("me/skydrive", newFolderData)
                firstRecheck = False
                GoTo ReCheck
            End If
            Return ID
        Catch ex As Exception
            Return Nothing
        End Try
    End Function

该函数位于我构建的包含登录按钮的控件中,并且我已将我的 SkyDrive 类作为属性添加到控件中,它使用的 _session 是使用登录按钮创建的会话。

我得到了一个有效的客户端,但所有的 GetAsync 函数都会让应用程序毫无例外地停在那里。分配的范围确实包括“skydrive_update”,因此也授予访问权限以创建文件夹,但代码甚至没有走那么远。

我在 Live SDK 论坛和 MSDN 论坛中搜索了任何类型的答案,但我只能找到使用 GetCompleted 方法的 C# 函数。

有任何想法吗?

4

1 回答 1

1

我猜你的调用堆栈更进一步,你有一个调用Waitor Result,从而导致我在我的博客上描述的死锁

于 2013-07-05T02:36:04.000 回答