Lists.GetAttachmentCollection method
Retorna uma lista de URLs para anexos ao item especificado.
Namespace: WebSvcLists
Assembly: STSSOAP (in STSSOAP.dll)
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)> _
Public Function GetAttachmentCollection ( _
listName As String, _
listItemID As String _
) As XmlNode
'Uso
Dim instance As Lists
Dim listName As String
Dim listItemID As String
Dim returnValue As XmlNode
returnValue = 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)]
public XmlNode GetAttachmentCollection(
string listName,
string listItemID
)
Parâmetros
listName
Type: System.StringUma cadeia de caracteres que contém o título ou o GUID da lista.
listItemID
Type: System.StringUma string que contém a ID do item de lista. Este valor não corresponder ao índice do item dentro da coleção de itens de lista.
Valor retornado
Type: System.Xml.XmlNode
Um fragmento XML no seguinte formato que contém as URLs para os anexos e que podem ser atribuídas 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>
Examples
O exemplo de código a seguir exibe as URLs anexos de um item especificado em uma lista no site atual.
Este exemplo exige que um using (Visual c#) ou a ser incluído no espaço para nome System.Xml de diretiva de Imports (Visual Basic).
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);