Lists.GetListCollection メソッド (websvcLists)
サイト内のすべてのリストの名前と GUID を返します。
名前空間: websvcLists
アセンブリ: STSSOAP (stssoap.dll 内)
構文
'宣言
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/GetListCollection", RequestNamespace:="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace:="https://schemas.microsoft.com/sharepoint/soap/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
Public Function GetListCollection As XmlNode
'使用
Dim instance As Lists
Dim returnValue As XmlNode
returnValue = instance.GetListCollection
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/GetListCollection", RequestNamespace="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace="https://schemas.microsoft.com/sharepoint/soap/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
public XmlNode GetListCollection ()
戻り値
リストの名前と GUID を含み、System.Xml.XmlNode オブジェクトに割り当てることができる、Collaborative Application Markup Language (CAML) で記述されたフラグメント。次のような形式になります。
<Lists xmlns="https://schemas.microsoft.com/sharepoint/soap/">
<List DocTemplateUrl=
"" DefaultViewUrl="/TestWeb1/Lists/Announcements/AllItems.aspx"
ID="{8A98E2E5-B377-4D0E-931B-3AC25BD09926}" Title="Announcements"
Description="Use the Announcements list to post messages on the
home page of your site."
ImageUrl="/_layouts/images/itann.gif"
Name="{8A98E2E5-B377-4D0E-931B-3AC25BD09926}"
BaseType="0" ServerTemplate="104"
Created="20030613 18:47:12" Modified="20030613 18:47:12"
LastDeleted="20030613 18:47:12" Version="0" Direction="none"
ThumbnailSize="" WebImageWidth=""
WebImageHeight="" Flags="4096" ItemCount="1"
AnonymousPermMask="" RootFolder="" ReadSecurity="1"
WriteSecurity="1" Author="1"
EventSinkAssembly="" EventSinkClass=""
EventSinkData="" EmailInsertsFolder=""
AllowDeletion="True" AllowMultiResponses="False"
EnableAttachments="True" EnableModeration="False"
EnableVersioning="False" Hidden="False" MultipleDataList="False"
Ordered="False" ShowUser="True" />
<List DocTemplateUrl=
"" DefaultViewUrl="/TestWeb1/Lists/Contacts/AllItems.aspx"
ID="{9FFE6155-DB75-4E0C-B18C-095326112151}" Title="Contacts"
Description="Use the Contacts list for information about people
that your team works with."
ImageUrl="/_layouts/images/itcontct.gif"
Name="{9FFE6155-DB75-4E0C-B18C-095326112151}"
BaseType="0" ServerTemplate="105" Created="20030613 18:47:14"
Modified="20030613 18:47:14"
LastDeleted="20030613 18:47:14" Version="0" Direction="none"
ThumbnailSize="" WebImageWidth=""
WebImageHeight="" Flags="4096" ItemCount="0"
AnonymousPermMask="" RootFolder="" ReadSecurity="1"
WriteSecurity="1" Author="1"
EventSinkAssembly="" EventSinkClass="" EventSinkData=""
EmailInsertsFolder="" AllowDeletion="True"
AllowMultiResponses="False" EnableAttachments="True"
EnableModeration="False" EnableVersioning="False" Hidden="False"
MultipleDataList="False"
Ordered="False" ShowUser="True" />
...
</Lists>
例
次のコード例では、現在のサイト上の各リストに関する情報を表示します。
この例では、using (Visual C#) または Imports (Visual Basic) ディレクティブが System.Xml 名前空間に含まれている必要があります。
Dim listService As New Web_Reference_Folder.Lists()
listService.Credentials = System.Net.CredentialCache.DefaultCredentials
Dim ndLists As XmlNode = listService.GetListCollection()
MessageBox.Show(ndLists.OuterXml)
Web_Reference_Folder.Lists listService = new Web_Reference_Folder.Lists();
listService.Credentials= System.Net.CredentialCache.DefaultCredentials;
XmlNode ndLists = listService.GetListCollection();
MessageBox.Show(ndLists.OuterXml);