首页 > 其他专区 > SharePoint >

SharePoint Silverlight中如何使用Net客户端对象模型

SharePoint 2021-09-22 09:58:08

1、创建Silverlight时,选择Silverlight 4,不要选择版本5,试了很久版本5都调用不了,自己也不知道什么原因,谷歌也没找到答案,后来尝试版本4,可以调用;

  至于Host the Silverlight application是否勾选没有影响;

clip_image002

  2、Silverlight中使用客户端脚本,和Net中不一样,要添加下面两个引用;

clip_image004

  3、两个需要的引用,在服务器上位置为C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\TEMPLATE\LAYOUTS\ClientBin,如下图:

clip_image006

  4、然后在Silverlight的cs文件中添加引用,如下:

  using Microsoft.SharePoint.Client;

  然后添加读取List的代码,如下:

复制代码
public string url = "http://server:80";Web web;List list;ListItemCollection itemColl;string listName = "Silverlight";string camlStr = "";private void btn_ShowMessage_Click(object sender, RoutedEventArgs e){    getdata();}public void getdata(){    try    {        ClientContext context = new ClientContext(url);        web = context.Web;        list = web.Lists.GetByTitle(listName);        CamlQuery query = new CamlQuery();        query.ViewXml = camlStr;        itemColl = list.GetItems(query);        context.Load(itemColl);        context.ExecuteQueryAsync(new ClientRequestSucceededEventHandler(OnSuccessed),            new ClientRequestFailedEventHandler(OnFailed));    }    catch (Exception ex)    {        MessageBox.Show(ex.Message);    }}private void OnSuccessed(Object sender, ClientRequestSucceededEventArgs args){    this.Dispatcher.BeginInvoke(LoadData);}private void LoadData(){    String data = string.Empty;    foreach (ListItem item in itemColl)    {        data += item["Title"].ToString() + "\r\n";    }    lb_Message.Content = data;}private void OnFailed(Object sender, ClientRequestFailedEventArgs args){    this.Dispatcher.BeginInvoke(delegate() { MessageBox.Show("Get Data Failed"); });}
复制代码

  5、前台页面添加Silverlight展示WebPart,添加完毕如下图:

clip_image008

  6、点击ShowMessage,执行客户端对象模型的方法,结果如下图:

clip_image010

总 结

  自己对于Silverlight不是很熟悉,只是小有了解SharePoint,所以有问题之处还请大家指正。尝试了很多次,才发现如何能在Silverlight中使用SharePoint客户端对象模型,希望分享给有需要的人,给大家一个参考吧。

  好了,就到这里,休息。。休息一下。。


标签: SharePointSilverlight如何使用net客户端

office教程网 Copyright © 2016-2020 https://www.office9.cn. Some Rights Reserved.