zoukankan      html  css  js  c++  java
  • SharePoint SC "Audit Settings"功能与CSOM的对应

    博客地址:http://blog.csdn.net/FoxDave

    SharePoint网站集中有个关于审计的功能:"Site collection audit settings",可以用CSOM通过Site的一些属性去设置它。

    Audit Log Trimming部分:

    Automatically trim the audit log for this site?

    对应的属性为:site.TrimAuditLog

    布尔类型,通过true/false的设置进行更新。


    Optionally, specify the number of days of audit log data to retain:

    对应的属性为:site.AuditLogTrimmingRetention

    整型,通过数字来设置审计日志保留的天数。


    If you'd like to keep audit data for longer than this, please specify a document library where we can store audit reports before trimming occurs:

    这个目前比较麻烦,没有暴露了出属性来,可以通过web的_auditlogreportstoragelocation属性获取和设置,但是幸运的是只能选择Root Web上的某个文档库的位置:

    site.RootWeb.AllProperties["_auditlogreportstoragelocation"]
    Specify the events to audit:

    对应的属性为:site.Audit.AuditFlags

    枚举类型,多个选项用|连接,例如:

    audit.AuditFlags = AuditMaskType.Update | AuditMaskType.Copy | AuditMaskType.Move | AuditMaskType.Search;
    以上就是审计设置相关的CSOM属性,可以用来方便地获取与设置网站集的审计设置。

  • 相关阅读:
    java笔记1
    mysql 5.5 zip配置安装
    centos 6.5 双网卡 上网 virtualbox nat hostonly
    MongoDB Chapter1:Introduction
    windows下在virtualbox中的Fuel Openstack 9.0 安装过程
    centos 7 install gnome etc
    mongodb4简明笔记
    mongodb windows 4 zip安装
    VB 提示音编歌曲
    VB 快捷键
  • 原文地址:https://www.cnblogs.com/justinliu/p/5961599.html
Copyright © 2011-2022 走看看