David Thielen
David Thielen
Document in detail when OnData is called, and with what data. Getting this right is key to a developer writing a correct algo. Items that need to be covered: 1....
Providing an overall general picture of the system will help a lot to let people understand how best to code an algo. This would include: 1. Is QC single threaded....
An item that would be incredibly valuable for the documentation They did this with Windows early on and it was a gigantic help (disclaimer, I was a senior developer on...
Hi; The files are now in C:\Program Files\DevExpress 23.1\Components\Bin (at least on my system). So no longer in `Program Files (x86)`. And there are three sub-folders there: Framework, NetCore, &...
Is there a way to find out what this sink is doing and why it is failing. With various configurations I can get it to log, but my pages don't...
Disposing and then creating a new cache is problematic at times. Having a `Clear()` method resolves that. I think adding `ICacheProvider.Clear()` is the best way to do this. But here...
I suggest the following code instead: ```cs public static bool ExTryGetValue(this IAppCache service, string key, out T? value) where T : class { var item = service.Get(key); if (item is...
I've got the sample compiling and running. But on starting up it throws: ``` Microsoft.JSInterop.JSException: Could not find 'azureMapsControl.Core.addMap' ('azureMapsControl' was undefined). Error: Could not find 'azureMapsControl.Core.addMap' ('azureMapsControl' was undefined)....
I want to call the method ```javascript datasource.getClusterExpansionZoom(cluster.properties.cluster_id).then(function (zoom) ``` This is very useful to handle a click on a cluster. thanks - dave
I have tested this with both AzureMap.OnClick and SymbolLayer.OnClick. For a pin with a single point both OnClick() event handlers are passed a MapMouseEventArgs.Shapes has the expected 1 point and...