IP*Works! Encrypt V9 - Online Help
IP*Works! Encrypt V9
Questions / Feedback?

Progress Event

Fired as progress is made.

Syntax

[VB.NET]
Public Event OnProgress As OnProgressHandler
[C#]
public event OnProgressHandler OnProgress;

public delegate void OnProgressHandler(object sender, XmlsigProgressEventArgs e);

class XmlsigProgressEventArgs : EventArgs {
  long BytesProcessed {get;}
  int PercentProcessed {get;}
  int Operation {get;}
  bool IsEOF {get; set;}
}

Remarks

This event is fired automatically as data is processed by the component.

The PercentProcessed parameter indicates the current status of the operation.

The BytesProcessed parameter holds the total number of bytes processed so far.

The Operation parameter is only applicable when either ReadFromProgressEvent or WriteToProgressEvent is set to True. This parameter defines whether a Read or Write operation is required. If the configuration settings are not set this parameter will always return 0. Possible values are:

0None
1Read
2Write

The IsEOF parameter is only applicable when either ReadFromProgressEvent or WriteToProgressEvent is set to True. This parameter defines whether the Read or Write operation is complete. When the Operation is Read (1) this parameter must be set to indicate that all data has been supplied to the component. When the Operation is Write (2) this value may be queried to determine when all data has been processed.

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 9.0.6240.0