Aide pour compilation Webpart Sharepoint 2010

Aide pour compilation Webpart Sharepoint 2010 - VB/VBA/VBS - Programmation

Marsh Posté le 08-08-2011 à 12:05:56    

Bonjour à tous,
 
J'ai trouvé un bout de code qui permet de faire ce que je recherche. En revanche je n'ai pas d'environnement de dev.  
Si jamais une âme charitable peut me compiler ce bout de code en wsp ce serait top...  
http://blogbaris.blogspot.com/2011 [...] point.html

Code :
  1. using (SPSite site = new SPSite(mUrl)) 
  2.    using (SPWeb web = site.OpenWeb()) 
  3.    { 
  4.      SPList list = web.Lists[mListName]; 
  5.      SPAuditQuery spQuery = new SPAuditQuery(site); 
  6.      spQuery.RestrictToList(list); 
  7.      SPAuditEntryCollection auditCol = site.Audit.GetEntries(spQuery);     
  8.      // Getting Audits   
  9.      foreach (SPAuditEntry entry in auditCol) 
  10.      { 
  11.        if (entry.ItemType == SPAuditItemType.Document && entry.Event == SPAuditEventType.View) 
  12.        {               
  13.          // Some Code to cumulate results or linq perhaps   
  14.          // by entry.ItemIds in to an other list or array   
  15.        } 
  16.      } 
  17.      // Show top ten   
  18.      SPListItem item = null; 
  19.      foreach (Guid guid in topTenList) { 
  20.        item = list.GetItemByUniqueId(guid); 
  21.        Console.WriteLine("Item: {0}", item.Name); 
  22.      } 
  23.    } 
  24. }


D'avance merci ;)

Reply

Marsh Posté le 08-08-2011 à 12:05:56   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed