Show / Hide Table of Contents

Class ChangeLogRequest

Provides information required to run the RetrieveChangeLog command.

Inheritance
System.Object
HandlerRequest
ChangeLogRequest
Inherited Members
HandlerRequest.RepositoryProperties
Namespace: OpenText.Fusion.AdapterSdk.Api
Assembly: OpenText.Fusion.AdapterSdk.Api.dll
Syntax
public class ChangeLogRequest : HandlerRequest
Remarks

File data retrieval is a part of the process of scanning repository. When the adapter receives that RetrieveChangeLog command (RetrieveChangeLogAsync(ChangeLogRequest, IFileListResultsHandler, CancellationToken) method), it should return all files in particular repository that were changed since the last processed date.

Constructors

ChangeLogRequest(Nullable<String>, DateTime, IRepositoryProperties)

Initializes a new instance of the ChangeLogRequest class.

Declaration
public ChangeLogRequest(string? additionalFilter, DateTime lastProcessedDate, IRepositoryProperties repositoryProperties)
Parameters
Type Name Description
System.Nullable<System.String> additionalFilter

The additional filter.

DateTime lastProcessedDate

The last processed date.

IRepositoryProperties repositoryProperties

The repository properties.

Properties

AdditionalFilter

Gets the additional filter.

Declaration
public string? AdditionalFilter { get; }
Property Value
Type Description
System.Nullable<System.String>

The additional filter.

LastProcessedDate

Gets the last processed date.

Declaration
public DateTime LastProcessedDate { get; }
Property Value
Type Description
DateTime

The last processed date.

See Also

HandlerRequest
In This Article
Back to top Generated by DocFX