SPDatabaseSnapshotCollection.CreationInterval 属性
时间以小时为单位,之间自动进行数据库快照创建。
命名空间: Microsoft.SharePoint.Administration.Backup
程序集: Microsoft.SharePoint(位于 Microsoft.SharePoint.dll 中)
语法
声明
Public Property CreationInterval As Short
Get
Set
用法
Dim instance As SPDatabaseSnapshotCollection
Dim value As Short
value = instance.CreationInterval
instance.CreationInterval = value
public short CreationInterval { get; set; }
属性值
类型:System.Int16
数据库快照之间的小时数。
备注
如果EnabledManagement是false的CreationInterval属性会忽略的内置数据库快照管理系统SharePoint Foundation 。
您必须调用Update() ,将更改保存到此属性。
示例
在以下示例中, db是一个SPDatabase对象。
db.Snapshots.RefreshSnapshots();db.Snapshots.CreationInterval = 3; db.Update();
另请参阅
引用
SPDatabaseSnapshotCollection 类