[70-541, #3] - Come effettuare il check-in di un documento in SharePoint

Una volta fatto l’upload del nostro documento all’interno della Document Library di SharePoint, ecco come effettuarne il check-in.

 

// Effettuare il Check-in di un file passando come argomento l’URL dello stesso

public void CheckIn(string fileUrl, string comments)

{

      try

      {

            using (SPSite site = new SPSite(fileUrl))

            {

                  using (SPWeb web = site.OpenWeb())

                  {

                        SPFile file = web.GetFile(fileUrl);

 

                        file.CheckIn(comments);

                  }

            }

            return;

      }

      catch (System.Exception ee)

      {

            throw ee;

      }

}

 

Technorati Tags: , ,

posted @ venerdì 2 febbraio 2007 11:07

Print
Comments have been closed on this topic.
«settembre»
domlunmarmergiovensab
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345