Lists.DeleteAttachment method
Remove o anexo do item de lista especificado.
Namespace: WebSvcLists
Assembly: STSSOAP (in STSSOAP.dll)
Syntax
'Declaração
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/DeleteAttachment", RequestNamespace := "https://schemas.microsoft.com/sharepoint/soap/", _
ResponseNamespace := "https://schemas.microsoft.com/sharepoint/soap/", _
Use := SoapBindingUse.Literal, ParameterStyle := SoapParameterStyle.Wrapped)> _
Public Sub DeleteAttachment ( _
listName As String, _
listItemID As String, _
url As String _
)
'Uso
Dim instance As Lists
Dim listName As String
Dim listItemID As String
Dim url As String
instance.DeleteAttachment(listName, listItemID, _
url)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/DeleteAttachment", RequestNamespace = "https://schemas.microsoft.com/sharepoint/soap/",
ResponseNamespace = "https://schemas.microsoft.com/sharepoint/soap/",
Use = SoapBindingUse.Literal, ParameterStyle = SoapParameterStyle.Wrapped)]
public void DeleteAttachment(
string listName,
string listItemID,
string url
)
Parâmetros
listName
Type: System.StringUma cadeia de caracteres que contém o título ou o GUID da lista.
listItemID
Type: System.StringUma cadeia de caracteres que contém a identificação do item a ser excluído. Este valor não corresponder ao índice do item dentro da coleção de itens de lista.
url
Type: System.StringUma cadeia de caracteres que contém a URL absoluta do anexo, da seguinte maneira: https://Server_Name/Site_Name/Lists/List_Name/Attachments/Item_ID/FileName.
Comentários
A URL para o anexo pode ser retornada usando o método GetAttachmentCollection .
Para acessar o serviço de Lists e seus métodos, defina uma referência de Web para https://Server_Name/[sites/][Site_Name/]_vti_bin/Lists.asmx.
Examples
O exemplo de código a seguir exclui todos os 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")
Dim ndsAttach As XmlNodeList = ndAttach.ChildNodes
Dim i As Integer
For i = 0 To ndsAttach.Count - 1
Dim delUrl As String = ndsAttach(i).InnerText
listService.DeleteAttachment("List_Name", "1", delUrl)
Next i
Web_Reference_Folder.Lists listService = new Web_Reference_Folder.Lists();
listService.Credentials= System.Net.CredentialCache.DefaultCredentials;
XmlNode ndAttach =
listService.GetAttachmentCollection("List_Name", "1");
XmlNodeList ndsAttach = ndAttach.ChildNodes;
for (int i=0; i<ndsAttach.Count; i++)
{
string delUrl = ndsAttach[i].InnerText;
listService.DeleteAttachment("List_Name", "1", delUrl);
}