Lists.DeleteContentType メソッド (websvcLists)
指定したリスト コンテンツ タイプを、指定したリストから削除します。
名前空間: websvcLists
アセンブリ: STSSOAP (stssoap.dll 内)
構文
'宣言
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/DeleteContentType", RequestNamespace:="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace:="https://schemas.microsoft.com/sharepoint/soap/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
Public Function DeleteContentType ( _
listName As String, _
contentTypeId As String _
) As XmlNode
'使用
Dim instance As Lists
Dim listName As String
Dim contentTypeId As String
Dim returnValue As XmlNode
returnValue = instance.DeleteContentType(listName, contentTypeId)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/DeleteContentType", RequestNamespace="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace="https://schemas.microsoft.com/sharepoint/soap/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)]
public XmlNode DeleteContentType (
string listName,
string contentTypeId
)
パラメータ
- listName
コンテンツ タイプが削除されるリストの名前を含む文字列。
- contentTypeId
削除するリスト コンテンツ タイプのコンテンツ タイプ ID を含む文字列。
戻り値
以下の形式の、メソッドが成功したことを示す文字列。
<Success xmlns="https://schemas.microsoft.com/sharepoint/soap/"/>
備考
あるリスト コンテンツ タイプがリスト内のアイテムに割り当てられている場合、そのコンテンツ タイプは削除できません。詳細については、「コンテンツ タイプの削除」を参照してください。
例
次の例では、指定したリスト コンテンツ タイプを削除します。
Imports System.Xml
Imports System.Web.Services.Protocols
…
Public Sub DeleteListContentType()
Dim listService As New Web_Reference_Folder.Lists
listService.Credentials = System.Net.CredentialCache.DefaultCredentials
'Specify the list and list content type ID.
Dim listName As String = "listName"
Dim strContentTypeId As String = "0x010100C78DE4D7C0C57C43AF878D28256599CA002E1A80DF76000C4780E09DDFFB90076D"
'Create XML node for results.
Dim xmlDoc As New XmlDocument
Dim xmlResult As XmlNode = xmlDoc.CreateNode(XmlNodeType.Element, "Result", "")
Try
'Delete the content type.
xmlResult.InnerXml = listService.DeleteContentType(listName, strContentTypeId).OuterXml.ToString
'Display the results.
MessageBox.Show(xmlResult.OuterXml.ToString)
Catch ex As SoapException
MessageBox.Show("Message:" + ControlChars.Lf + ex.Message & _
ControlChars.Lf & _
"Detail:" + ControlChars.Lf + ex.Detail.InnerText & _
ControlChars.Lf & _
"StackTrace:" & ControlChars.Lf + ex.StackTrace)
Catch ex As Exception
MessageBox.Show(ex.Message.ToString)
End Try
End Sub
関連項目
参照
Lists クラス
Lists メンバ
websvcLists 名前空間