I'm having trouble understanding the relation between DomainDataSource.AutoLoad and DomainDataSource.RefreshInterval.
If I enable AutoLoad for a given DomainDataSource, the server is being queried repeatedly at a very high rate... this is not what I want.
So I set RefreshInterval to "00:00:10" (every 10 seconds right?) but then the data is not loaded at all.
If I set AutoLoad to true, the value of RefreshInterval does not seem to affect anything.
And then there's the LoadDelay property, that one does seem to be related to AutoLoad, but setting this to 10 seconds does not slow down the repeated queries to the server.
It gets even worse because the application I'm trying is a Navigation based application and every time a page gets loaded, more queries seem to be executed at the same time, even when you go to a different page within the application.
I'm definatly doing something wrong, but I can't figure out what because I fail to understand the specifics of these properties. I read the MSDN docs, but for once they didn't really help.
I'm hope it's not to vague of a question.