SearchResult

SearchResult class

Result of searching for signatures in specified document.

public class SearchResult : IEnumerable<BaseSignature>, IResult

Properties

Name Description
DestinDocumentSize { get; } Returns destination document size. For Search method it always returns 0.
Failed { get; } List of signatures BaseSignature that failed Search process by search criteria. Supported only for failed Archive documents on Search method.
ProcessingTime { get; } Returns the execution time of the search process in milliseconds.
Signatures { get; } List of found signatures BaseSignature.
SourceDocumentSize { get; } Returns source document size
Succeeded { get; } List of found signatures BaseSignature. This list will be always equal to Signatures property.
TotalSignatures { get; } Returns the total processed signatures by the search process

Methods

Name Description
GetEnumerator() Returns enumerator.
ToList<T>() Provides conversion to strongly typed list of signatures.

See Also