Click or drag to resize

CheckinManager Class

Inheritance Hierarchy
SystemObject
  Aras.IOMECheckinManager

Namespace:  Aras.IOME
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public class CheckinManager : IDisposable

The CheckinManager type exposes the following members.

Properties
  NameDescription
Public propertyFlags
Property contains value of CheckinManagerFlags and shows which operations should be performed after checkin.
Top
Methods
  NameDescription
Public methodCode exampleCheckForConflicts
Checks configuration in checkin manager for conflicts in array
Public methodCode exampleCheckin
Does synchronous checkin of all files in the configuration.
Public methodCode exampleCheckinAsync
Start asynchronous checkin of all files in the configuration. While asychronous checkin is in progress cancel, pause and resume operations are available.
Public methodCheckinCancelAsync
Cancel asynchronous upload of all files in the configuration that was started by UploadFilesAsync. Checkin will be completed with Cancelled value 'true'. Method is available for asynchronous checkin only.
Public methodCheckinPauseAsync
Pause asynchronous upload of all files in the configuration that was started by UploadFilesAsync. Method is available for asynchronous checkin only.
Public methodCheckinResumeAsync
Resume asynchronous upload of all files in the configuration that was started by UploadFilesAsync. Method is available for asynchronous checkin only.
Public methodDispose
Release all resources managed by instance
Public methodGetConflictDetectionRuleFactory
Method for creation of factory that is used to create conflict detection rules.
Top
Events
  NameDescription
Public eventCheckinCompleted
Checkin operation was completed. Use this event for checking result of checkin operation or performing custom actions when checkin operation was completed.
Public eventCheckinProgressChanged
Checkin operation progress has changed. Use this event for tracking checkin progress. Might be useful for progress bars in custom application.
Public eventUploadFileCompleted
Uploading of file to vault server was completed. Use this event for performing custom operations when uploading of a single file was completed.
Public eventUploadFilesCompleted
Uploading files to vault server was completed event. Use this event in order to perform custom actions when uploading files operation was completed. For example check result of uploading file to vault.
Public eventUploadFilesProgressChanged
Uploading progress has changed. Use this event in order to track progress of uploading files operation. Might be useful for progress bars in custom application.
Top
See Also