73 /// Reader Method :: using set of arguements we specify read out type. Enumerate
74 /// until the end of the data stream or file. E.g. Read CSV file line by line and convert
75 /// into data types.
76 /// </summary>
77 /// <returns>BaseData type set by Subscription Method.</returns>
78 [Obsolete("Reader(SubscriptionDataConfig, string, DateTime, DataFeedEndpoint) method has been made obsolete, use Reader(SubscriptionDataConfig, string, DateTime, bool) instead.")]
83 /// Reader converts each line of the data source into BaseData objects. Each data type creates its own factory method, and returns a new instance of the object
84 /// each time it is called. The returned object is assumed to be time stamped in the config.ExchangeTimeZone.
85 /// </summary>
86 /// <param name="config">Subscription data config setup object</param>
87 /// <param name="line">Line of the source document</param>
88 /// <param name="date">Date of the requested data</param>
89 /// <param name="isLiveMode">true if we're in live mode, false for backtesting mode</param>
90 /// <returns>Instance of the T:BaseData object generated by this line of the CSV</returns>
94 /// Reader converts each line of the data source into BaseData objects. Each data type creates its own factory method, and returns a new instance of the object
95 /// each time it is called. The returned object is assumed to be time stamped in the config.ExchangeTimeZone.
96 /// </summary>
97 /// <param name="config">Subscription data config setup object</param>
98 /// <param name="stream">The data stream</param>
99 /// <param name="date">Date of the requested data</param>
100 /// <param name="isLiveMode">true if we're in live mode, false for backtesting mode</param>
101 /// <returns>Instance of the T:BaseData object generated by this line of the CSV</returns>