클라이언트 모델로 SharePoint 데이터 액세스

5091 단어 SharePoint
클라이언트 모델로SharePoint 데이터에 접근하려면 먼저 두 개의 인용을 추가해야 한다. 하나는 마이크로소프트이다.SharePoint.Client, 다른 하나는 Microsoft.SharePoint.Client.Runtime
프로그램에서 Microsoft를 참조합니다.SharePoint.Client 네임스페이스
1. 다음은 SharePoint 목록에 접근한 데이터입니다. 목록의 이름은 뉴스 목록이고 그 중에서
 ClientContext ct = new ClientContext("http://moss:84");
NetworkCredential nw = CredentialCache.DefaultNetworkCredentials;
ct.Credentials = nw;
Microsoft.SharePoint.Client.Web web = ct.Web;

List lst = web.Lists.GetByTitle(" ");
CamlQuery camlQuery = new CamlQuery();
camlQuery.ViewXml = "<View/>";
Microsoft.SharePoint.Client.ListItemCollection lts = lst.GetItems(camlQuery);
FieldCollection flds = lst.Fields;
ct.Load(lst);
ct.Load(lts);
ct.Load(flds);
ct.ExecuteQuery();

// string fName = string.Empty;
//foreach (Field f in flds)
//{
// if (f.Title == " ")
// {
// fName = f.InternalName;
// break;
// }
//}
                //     SPFieldUrlValue    ,       ,   URL,   Description
//foreach (Microsoft.SharePoint.Client.ListItem lt in lts)
//{
//if (lt[fName]!=null)
//{
// FieldUrlValue fURL = new FieldUrlValue();
// fURL = (FieldUrlValue)lt[fName];
// Response.Write("ID:"+i.ToString()+",LID:"+lt.Id+","+fURL.Url);
// Response.Write("<br/>");
// i++;
//}
//Response.Write(lt[fName]);
//Response.Write("<br/>");
// }
Microsoft.SharePoint.Client.ListItem lt = lts[0];
foreach (Microsoft.SharePoint.Client.Field f in flds)
{
Response.Write("Field Name: "+f.Title+":Field InterName: "+f.InternalName);
Response.Write("<br/>");
}

좋은 웹페이지 즐겨찾기