.NET QueryTimeout not found

@kris_smarty -

You can set the Timeout on the QueryRequest object:

var query = new QueryRequest("SELECT * FROM `beer-sample` LIMIT 10")
               .Timeout(new TimeSpan(0, 0, 0, 60)); 

That should work.

-Jeff