SPSite.GetChanges 方法

Returns the default number of changes listed in the current change log for the site collection.

命名空间:  Microsoft.SharePoint
程序集:  Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)

语法

声明
Public Function GetChanges As SPChangeCollection
用法
Dim instance As SPSite
Dim returnValue As SPChangeCollection

returnValue = instance.GetChanges()
public SPChangeCollection GetChanges()

返回值

类型:Microsoft.SharePoint.SPChangeCollection
A collection of SPChange objects that represent the changes.

备注

The total number of changes returned by a query against the change log could be very large. For performance reasons, changes are returned in batches of limited size. This overload of the GetChanges method returns only the first batch of changes recorded in the log.

If you want all changes rather than only the first batch, your code should call the GetChanges method in a loop until it returns a collection with zero changes, signifying that it has reached the end of the log. You can use the ChangeToken from the last change of the first batch to get the second batch, and so on until you get an empty collection. For an example, see the GetChanges(SPChangeToken) method.

备注

By default, the change log retains data for 60 days. You can configure the retention period by setting the ChangeLogRetentionPeriod property.

另请参阅

引用

SPSite 类

SPSite 成员

GetChanges 重载

Microsoft.SharePoint 命名空间

其他资源

Using the Change Log