Pass context.Request.QueryString argument to connector event

How to pass context.request.querystring to connector events, like connector_BeforeProcessing/connector_BeforeSelect?

How to add arguments?

Could I use this.Connector.Request.Adapter.ExecuteScalar(SQL_Statement); in .ashx?
any limits?

Thanks

Hi,
you can get instance of current http context from any poing of handler’s code var context = HttpContext.Current; var str = context.Request.QueryString;