using System; namespace Krs.Ats.IBNet { /// /// Scanner Data Event Arguments /// [Serializable()] public class ScannerDataEndEventArgs : EventArgs { private int requestId; /// /// Full Constructor /// /// The ticker ID of the request to which this row is responding. public ScannerDataEndEventArgs(int requestId) { this.requestId = requestId; } /// /// Uninitialized Constructor for Serialization /// public ScannerDataEndEventArgs() { } /// /// The ticker ID of the request to which this row is responding. /// public int RequestId { get { return requestId; } set { requestId = value; } } } }