python操作sharepoint对象模型
2010-09-22 11:27:22 来源:WEB开发网PyListItemCollection
1 using System;
2 using System.Collections.Generic;
3 using System.Text;
4 using Microsoft.SharePoint;
5 using System.Runtime.InteropServices;
6
7 namespace PySP
8 {
9 [ComVisible(true)]
10 public class PyListItemCollection
11 {
12 protected SPListItemCollection items = null;
13
14 protected void EnsureListItems()
15 {
16 if (items == null)
17 throw new NullReferenceException("the items object can't be null!");
18 }
19
20 public PyListItemCollection() { }
21
22 public PyListItemCollection(SPListItemCollection items)
23 {
24 this.items = items;
25 EnsureListItems();
26 }
27
28 public int Count
29 {
30 get
31 {
32 EnsureListItems();
33 return this.items.Count;
34 }
35 }
36
37 public PyListItem GetItemByIndex(int index)
38 {
39 EnsureListItems();
40 return new PyListItem(this.items[index]);
41 }
42 }
43 }
44
Tags:python 操作 sharepoint
编辑录入:爽爽 [复制链接] [打 印]- ››操作系统资源不足两种方案解决办法
- ››Sharepoint 文档管理系列之归档处理
- ››python操作sharepoint对象模型
- ››Python 2.6.2的.pyc文件格式
- ››Python 2.6.2的字节码指令集一览
- ››Python 测试框架: 用 Python 测试框架简化测试
- ››Python 测试框架: 寻找要测试的模块
- ››Python的class系统
- ››Python 和 LDAP
- ››python图形处理库PIL(Python Image Library)
- ››Python图形图像处理库的介绍之Image模块
- ››Python和Google AppEngine开发基于Google架构的应...
赞助商链接