Метод Lists.GetAttachmentCollection
Возвращает список URL-адресов для вложений для указанного элемента.
Пространство имен: WebSvcLists
Сборка: STSSOAP (в STSSOAP.dll)
Синтаксис
'Декларация
<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
'Применение
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
)
Параметры
listName
Тип: System.StringСтрока, содержащая название или идентификатор GUID для списка.
listItemID
Тип: System.StringСтрока, содержащая идентификатор для элемента списка. Это значение не соответствует индекс элемента в коллекции элементов списка.
Возвращаемое значение
Тип: System.Xml.XmlNode
Фрагмент XML в следующей форме, которая содержит URL-адреса для вложений и может быть назначены объект 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>
Примеры
В следующем примере кода отображаются URL-адреса вложений для указанного элемента списка на текущем узле.
В этом примере требуется директива Imports (Visual Basic) была включена в пространство имен System.Xml или using (Visual C#).
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);