Lists.GetAttachmentCollection Method
Retorna uma lista das URLs para anexos para o item especificado.
Web Service: ListsWeb Reference: http://<Site>/_vti_bin/Lists.asmx
Syntax
'Declaração
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/GetAttachmentCollection", RequestNamespace:="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace:="https://schemas.microsoft.com/sharepoint/soap/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
PublicFunctionGetAttachmentCollection ( _
listNameAsString, _
listItemIDAsString _
) AsXmlNode
'Uso
DiminstanceAsListsDimlistNameAsStringDimlistItemIDAsStringDimreturnValueAsXmlNodereturnValue = instance.GetAttachmentCollection(listName, listItemID)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/GetAttachmentCollection", RequestNamespace="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace="https://schemas.microsoft.com/sharepoint/soap/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
publicXmlNodeGetAttachmentCollection (
stringlistName,
stringlistItemID
)
Parameters
- listName
Uma seqüência de caracteres que contém o título ou o GUID para a lista.
- listItemID
Uma seqüência de caracteres que contém a identificação de item da lista. Esse valor não corresponde ao índice do item dentro de coleção de itens de lista.
Return Value
Um fragmento XML in a forma a seguir que contém as URLs para os anexos e que pode ser atribuído a um objeto System.Xml.XmlNode.
<Attachments>
<Attachment>http://Server_Name/LISTS/List_Name/
Attachments/Item_ID/File1_Name</Attachment>
<Attachment>http://Server_Name/LISTS/List_Name/
Attachments/Item_ID/File2_Name</Attachment>
<Attachment>http://Server_Name/LISTS/List_Name/
Attachments/Item_ID/File3_Name</Attachment>
<Attachments>
Example
O exemplo de código a seguir exibe as URLs de anexos para um item especificado em uma lista no site atual.
Esse exemplo requer que um using (Visual C#) ou Imports (Visual Basic) diretiva estar incluído para o namespace System.Xml.
Dim listService As New Web_Reference_Folder.Lists()
listService.Credentials = System.Net.CredentialCache.DefaultCredentials
Dim ndAttach As XmlNode =
listService.GetAttachmentCollection("List_Name", "1")
MessageBox.Show(ndAttach.OuterXml) '
Web_Reference_Folder.Lists listService = new Web_Reference_Folder.Lists();
listService.Credentials= System.Net.CredentialCache.DefaultCredentials;
XmlNode ndAttach =
listService.GetAttachmentCollection("List_Name","1");
MessageBox.Show(ndAttach.OuterXml);