好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Inside SharePoint 2010 (2): Enabling the SharePoin

Inside SharePoint 2010 (2): Enabling the SharePoint 2010 Developer Dashboard

using  System;
using  System.Collections.Generic;
using  System.Linq;
using  System.Text;
using  Microsoft.SharePoint;
using  Microsoft.SharePoint.Administration;

namespace  ConsoleApplication1
{
     class  Program
    {
         static   void  Main( string [] args)
        {
            SPDeveloperDashboardSettings settings = SPWebService.ContentService.DeveloperDashboardSettings;
            settings.DisplayLevel = SPDeveloperDashboardLevel.On;
            settings.TraceEnabled =  true ;
            settings.Update();
            Console.WriteLine( " Finished... " );
            Console.ReadLine();
        }
    }
}

查看更多关于Inside SharePoint 2010 (2): Enabling the SharePoin的详细内容...

  阅读:40次

上一篇: MySQL的转义字符

下一篇:前端生成图表