Back to product page

Progress64 event


Fires during crypto operation.

Syntax

  • Basic
Private Sub object_Progress64(PositionHi, Position, TotalHi, Total)
The Progress64(object,PositionHi,Position,TotalHi,Total) syntax has these parts:
objectA wodCrypt object.
PositionHiA Long value. Higher long value of 64bit integer for current position in the blob.
PositionA Long value. Lower long value of 64bit integer for current position in the blob.
TotalHiA Long value. Higher long value of 64bit integer for total number of bytes in the blob.
TotalA Long value. Lower long value of 64bit integer for total number of bytes in the blob.

Remarks

The Progress event may fire many times during the execution of some crypto methods, while wodCrypt operates on the data. This event is fired only if the FireEvents property is set to True.

If position or total arguments fits into 32bit long integer, Progress event is fired instead of this one. Depending on the programming language you use, you will need to convert these values to appropriate int64 integer.

Code sample

  • Basic

Platforms

Windows