次の方法で共有


Lists.CheckInFile メソッド (websvcLists)

ドキュメントを、リモートで SharePoint ドキュメント ライブラリにチェックインすることを許可します。

名前空間: websvcLists
アセンブリ: STSSOAP (stssoap.dll 内)

構文

'宣言
<SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/CheckInFile", RequestNamespace:="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace:="https://schemas.microsoft.com/sharepoint/soap/", Use:=SoapBindingUse.Literal, ParameterStyle:=SoapParameterStyle.Wrapped)> _
Public Function CheckInFile ( _
    pageUrl As String, _
    comment As String, _
    CheckinType As String _
) As Boolean
'使用
Dim instance As Lists
Dim pageUrl As String
Dim comment As String
Dim CheckinType As String
Dim returnValue As Boolean

returnValue = instance.CheckInFile(pageUrl, comment, CheckinType)
[SoapDocumentMethodAttribute("https://schemas.microsoft.com/sharepoint/soap/CheckInFile", RequestNamespace="https://schemas.microsoft.com/sharepoint/soap/", ResponseNamespace="https://schemas.microsoft.com/sharepoint/soap/", Use=SoapBindingUse.Literal, ParameterStyle=SoapParameterStyle.Wrapped)] 
public bool CheckInFile (
    string pageUrl,
    string comment,
    string CheckinType
)

パラメータ

  • pageUrl
    チェックインするドキュメントの完全パスを含む文字列。
  • comment
    オプションのチェックイン コメントを含む文字列。
  • CheckinType
    値 0、1、2 を使用した文字列表記。0 = MinorCheckIn、1 = MajorCheckIn、2 = OverwriteCheckIn を表します。

    メモメモ :

    これらの値は、Microsoft.SharePoint.SPCheckinType 列挙にマップされます。

戻り値

操作が成功した場合は true、それ以外の場合は false

次の例では、ファイルをサブサイトの Shared Documents にチェックインします。

Dim listService As New Web_Reference_Folder.Lists()

listService.Credentials = System.Net.CredentialCache.DefaultCredentials

Dim fileCheckin As String = "http://Server_Name/sites/Subsite/Shared Documents/MyFile.txt"

Dim myResults As Boolean = listService.CheckIn(fileCheckin, "Completed revision.", "1")
Web_Reference_Folder.Lists listService = new Web_Reference_Folder.Lists();

listService.Credentials = System.Net.CredentialCache.DefaultCredentials;

string fileCheckin = "http://Server_Name/sites/Subsite/Shared Documents/MyFile.txt";

bool myResults = listService.CheckIn(fileCheckin, "Completed revision.", "1");

関連項目

参照

Lists クラス
Lists メンバ
websvcLists 名前空間