protected override void ValidateConfigurationCore()
        {
            base.ValidateConfigurationCore();

            if (this.EstimationEnabled && this.EstimationBufferSize <= 0)
            {
                BaseConfiguration.OutOfRangeMin("PositionEstimationBufferSize", 1);
            }
        }