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:
SharePoint,
.NET,
Certificazioni
posted @ venerdì 2 febbraio 2007 11:07