2014-04-07 65 views
2

我想遵循MSDN上的示例來閱讀onedrive上的文件夾的屬性,但我遇到了一些錯誤。如何閱讀使用C#窗口應用程序的onedrive文件夾

這裏的教程中,我以下:http://msdn.microsoft.com/en-us/library/live/hh826522.aspx#reading_albums

當我運行的代碼說我得到的錯誤:

「錯誤1‘testRun.MainPage’不包含‘會話’的定義和沒有擴展方法'會話'接受類型'testRun.MainPage'的第一個參數可以找到(你是否缺少使用指令或程序集引用?)C:\ Users \ me \ Desktop \ project「

我有仍然研究這個問題,並沒有找到我需要包含的LiveConnectClient參數。它只給出它需要「LiveConnectClient會話」,我不知道該如何放置。

我的代碼:

private async void Button_logIn_Click(object sender, RoutedEventArgs e) 
     { 
      try 
      { 
       LiveConnectClient liveClient = new LiveConnectClient(this.session); 
       LiveOperationResult operationResult = 
        await liveClient.GetAsync("path/to/folder"); 
       dynamic result = operationResult.Result; 
       this.Textblock_status.Text = string.Join(" ", "Album name:", result.name, "ID:", result.id); 
      } 
      catch (LiveConnectException exception) 
      { 
       this.Textblock_status.Text = "Error getting album info: " + exception.Message; 
      } 
     } 

回答

相關問題