clintsinger
clintsinger
## Expected Behavior When a workflow activity is created that has DI dependencies that haven't not yet been registered with the DI system the workflow should throw an exception that...
## Describe the feature Currently the `CancellationToken` isn't exposed by the `RunAsync` abstract method. Traditionally, async methods include the token to be passed to subsequent `async` calls. While there isn't...
## In what area(s)? /area runtime > /area operator > /area placement > /area docs > /area test-and-release ## What version of Dapr? 1.12 (.NET SDK) ## Expected Behavior The...
## Describe the feature All workflows and activities need to be registered. The current way to do that is by manually adding each of them using the `RegisterWorkflow` or `RegisterActivity`...
I'm just getting started with ZeroQL and I noticed that the interface types don't start with an `I` which is pretty typical C# syntax for interfaces. I realize it isn't...
I have a use case were I need to be able to programmatically zoom to a specific pixel on an image. I was hoping the `zoomTo` function would help me...
In addition to the previous viewport values, the current ones are included as part of the `ViewportChangedEventArgs`. The `OldViewport` property has been marked `Obsolete` and has been replaced with `PreviousViewport`
The documentation states that `Outline` on `VectorStyle` is used by lines and polygons to draw an outline around the shape. In reality it does not. This PR intends to fix...
**The problem** When one subscribes to the `ViewportChanged` event on `Map.Navigator` only the old viewport information is passed as part of the event. I'd like to also have the new...
I'm working on a layer where I query a spatialite database for the features. I'm following the `ImageLayer` implementation for inspiration and it uses a helper class called `FeatureFetcher` but...