Exemple #1
0
        internal override FxDataClient CreateFxDataClient(string connectionString)
        {
            this.handle.Handle.Delete();
            this.handle = new FxDataFeed();
            this.handle = FxDataFeed.Create(connectionString);

            return this.handle.DataClient;
        }
Exemple #2
0
        /// <summary>
        /// Releases all unmanaged resources.
        /// </summary>
        public override void Dispose()
        {
            if (this.IsStarted)
                this.Stop();

            this.handle.Handle.Delete();
            this.handle = new FxDataFeed();
            //GC.SuppressFinalize(this);
        }