Class CheckoutCheckinBase
Checkin and checkout operations
Inheritance
System.Object
CheckoutCheckinBase
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: DocuWare.Platform.ServerClient
Assembly: DocuWare.Platform.ServerClient.dll
Syntax
public static class CheckoutCheckinBase
Methods
CheckInFromFileSystemAsync(ServiceConnection, IFileUploadInfo, CheckInActionParameters)
Checks document in from file system.
Declaration
public static async Task<DeserializedHttpResponse<Document>> CheckInFromFileSystemAsync(this ServiceConnection serviceConnection, IFileUploadInfo fileToCheckin, CheckInActionParameters checkInParams)
Parameters
Type | Name | Description |
---|---|---|
ServiceConnection | serviceConnection | The service connection |
IFileUploadInfo | fileToCheckin | The file to check in |
CheckInActionParameters | checkInParams | The parameters |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DeserializedHttpResponse<Document>> | Reference to checked in document |
ChunkCheckInFromFileSystemAsync(ServiceConnection, IFileUploadInfo, CheckInActionParameters, Int32)
Checks in the specified file from the file system asynchronously.
Declaration
[Wolf]
public static Task<DeserializedHttpResponse<Document>> ChunkCheckInFromFileSystemAsync(this ServiceConnection serviceConnection, IFileUploadInfo file, CheckInActionParameters checkInParams, int chunkSize = 0)
Parameters
Type | Name | Description |
---|---|---|
ServiceConnection | serviceConnection | The service connection. |
IFileUploadInfo | file | The file. |
CheckInActionParameters | checkInParams | The checkIn parameters |
System.Int32 | chunkSize | Size of the chunk. |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<DeserializedHttpResponse<Document>> | Returns the result of the checkIn operation. |