1. 程式人生 > >使用client對象模型讀取SharePoint列表數據

使用client對象模型讀取SharePoint列表數據

lis content plist center rgs ext arp app inf

使用client對象模型讀取SharePoint列表數據

client對象模型提供了強有力的方式。從遠程client應用程序管理列表。

1. 管理員身份打開VS,新建項目Windows窗口應用程序,命名ReadSPListData,確保選擇.NET Framework 3.5。 2. 加入控件。 技術分享
控件類型: 技術分享
3. 你必須加入一個類ProductInfo。

namespace ReadSPListData
{
    class ProductInfo
    {
        public string productName { get; set; }
        public string productSKU { get; set; }
        public string productPrice { get; set; }
    }
}
4. 雙擊兩個button,加入方法。首先是Exit:
        private void btnExit_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }
5. 然後是Load。

首先要加入合適的引用。右擊項目。加入引用Microsoft.SharePoint.Client.dll和Microsoft.SharePoint.Client.Runtime.dll。並在代碼中加入using。

你可能會遇到命名空間沖突。加入例如以下代碼
using ClientOM = Microsoft.SharePoint.Client; 6. 加入Load代碼。

7. 執行截圖: 技術分享

使用client對象模型讀取SharePoint列表數據