AddErrorCallback Method
Add a BCL error callback.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- cb
-
Type:
BCLXPRBErrorCallback
XPRBErrorCallback object that points to the CB method. - data
-
Type:
SystemObject
An object that may be used to send data to the CB method.

XPRBprob prob = new XPRBprob("NewProb"); object userData = IntPtr.Zero; XPRBErrorCallback errCB = new XPRBErrorCallback(error_cb_method); prob.AddErrorCallback(errCB, userData);
