Lists.CheckOutFile - Méthode
Permet à des documents dans une bibliothèque de documents SharePoint à extraire à distance.
Espace de noms : WebSvcLists
Assembly : STSSOAP (dans STSSOAP.dll)
Syntaxe
'Déclaration
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/CheckOutFile", RequestNamespace := "https://schemas.microsoft.com/sharepoint/soap/", _
ResponseNamespace := "https://schemas.microsoft.com/sharepoint/soap/", _
Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Function CheckOutFile ( _
pageUrl As String, _
checkoutToLocal As String, _
lastmodified As String _
) As Boolean
'Utilisation
Dim instance As Lists
Dim pageUrl As String
Dim checkoutToLocal As String
Dim lastmodified As String
Dim returnValue As Boolean
returnValue = instance.CheckOutFile(pageUrl, _
checkoutToLocal, lastmodified)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/CheckOutFile", RequestNamespace = "https://schemas.microsoft.com/sharepoint/soap/",
ResponseNamespace = "https://schemas.microsoft.com/sharepoint/soap/",
Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public bool CheckOutFile(
string pageUrl,
string checkoutToLocal,
string lastmodified
)
Paramètres
pageUrl
Type : System.StringChaîne qui contient le chemin d'accès complet au document à extraire.
checkoutToLocal
Type : System.StringUne chaîne contenant « true » ou un « false » qui indique si le fichier doit être marquée comme étant extrait pour modification en mode hors connexion.
lastmodified
Type : System.StringUne chaîne au format de date RFC 1123 représentant la date et l'heure de la dernière modification apportée au fichier ; par exemple, « 20 juin 1982 12:00:00 GMT ».
Valeur renvoyée
Type : System.Boolean
true si l'opération a réussi ; dans le cas contraire, false.
Exemples
L'exemple suivant extrait un fichier à partir de Documents partagés dans un sous-site.
Dim listService As New Web_Reference_Folder.Lists()
listService.Credentials = System.Net.CredentialCache.DefaultCredentials
Dim fileCheckout As String = "http://Server_Name/sites/Subsite/Shared Documents/MyFile.txt"
Dim myResults As Boolean = listService.CheckOutFile(fileCheckout, "true", "20 Jun 2006 12:00:00 GMT")
Web_Reference_Folder.Lists listService = new Web_Reference_Folder.Lists();
listService.Credentials = System.Net.CredentialCache.DefaultCredentials;
string fileCheckout = "http://Server_Name/sites/Subsite/Shared Documents/MyFile.txt";
bool myResults = listService.CheckOutFile(fileCheckout, "true", "20 Jun 2006 12:00:00 GMT");