All products / Saraff.Twain.DS / Contents
OnEndXfer
Invoked at the end of every transfer to signal that the application has received all the data it expected.
Syntax
protected virtual void OnEndXfer()
Examples
protected override void OnEndXfer() {
this._Dispose();
if(this.XferEnvironment.PendingXfers>0) {
this._Acquire();
}
base.OnEndXfer();
}