Lists.GetList メソッド (websvcLists)
指定したリストのスキーマを返します。
名前空間: websvcLists
アセンブリ: STSSOAP (stssoap.dll 内)
構文
'宣言
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/GetList", RequestNamespace:="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace:="https://schemas.microsoft.com/sharepoint/soap/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
Public Function GetList ( _
listName As String _
) As XmlNode
'使用
Dim instance As Lists
Dim listName As String
Dim returnValue As XmlNode
returnValue = instance.GetList(listName)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/GetList", RequestNamespace="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace="https://schemas.microsoft.com/sharepoint/soap/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
public XmlNode GetList (
string listName
)
パラメータ
- listName
リストのタイトルまたは GUID のどちらかを含む文字列。 UserInfo テーブルに対してクエリを実行する場合、文字列に "UserInfo" を含めます。
戻り値
リスト スキーマを含み、System.Xml.XmlNode オブジェクトに割り当てることができる、Collaborative Application Markup Language (CAML) で記述されたフラグメント。次のような形式になります。
<List DocTemplateUrl="" DefaultViewUrl="/Site_Name/Lists/List_Name/AllItems.aspx"
ID="{42FC00F1-F7EA-4ECE-9D4C-F47A95A806B2}" Title="List_Name" Description="Description"
ImageUrl="/_layouts/images/itgen.gif" Name="{42FC00F1-F7EA-4ECE-9D4C-F47A95A806B2}"
BaseType="0" ServerTemplate="100" Created="20030616 18:37:44" Modified="20030618 18:26:57"
LastDeleted="20030616 18:37:44" Version="2" Direction="none" ThumbnailSize="" WebImageWidth=""
WebImageHeight="" Flags="4096" ItemCount="5" AnonymousPermMask=""
RootFolder="/Site_Name/Lists/List_Name" 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"
xmlns="https://schemas.microsoft.com/sharepoint/soap/">
<Fields>
<Field ColName="tp_ID" ReadOnly="TRUE" Type="Counter" Name="ID" PrimaryKey="TRUE"
DisplayName="ID" FromBaseType="TRUE" />
<Field Type="Text" Name="Title" DisplayName="Title" Required="TRUE" FromBaseType="TRUE"
ColName="nvarchar1" />
...
<Fields>
<RegionalSettings>
<Language>1033<Language>
<Locale>1025<Locale>
<CalendarType>6<CalendarType>
<AdvanceHijri>-1</AdvanceHijri>
<TimeZone>1</TimeZone>
<Time24>1</Time24>
<SortOrder>1033<SortOrder>
<Presence Enabled=”True” />
</RegionalSettings>
</List>
例
次のコード例では、指定したリストのスキーマを表示します。
この例では、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.GetList("List_Name")
MessageBox.Show(ndLists.OuterXml)
Web_Reference_Folder.Lists listService = new Web_Reference_Folder.Lists();
listService.Credentials= System.Net.CredentialCache.DefaultCredentials;
XmlNode ndLists = listService.GetList("List_Name");
MessageBox.Show(ndLists.OuterXml);