Funq: Register the same object multiple times and using an identifier (from session) to resolve them
I have a simple dictionary of type `string, DbContext` I am registering my Dictionary like this ``` container.Register<IDictionary<string, DbContext>>(x => dbContexts).ReusedWithin(ReuseScope.Reque...
- Modified
- 4 Sep at 14:39
Identity Server 4 : Sorry, there was an error : unauthorized_client
I have set up identity server 4 to extent Umbraco so it uses a custom role provider. Everything was working but now when I get redirected to my Identity server I get this error: [](https://i.stack....
- Modified
- 4 Sep at 16:59
What changed in System.ValueTuple 4.4.0 -> 4.5.0?
I consider updating my `System.ValueTuple` references from 4.4.0 to (current) 4.5.0. To avoid regressions, I'd like to find out what changed between those two releases. The [nuget page](https://www.n...
- Modified
- 4 Sep at 13:8
DeprecationWarning: Buffer() is deprecated due to security and usability issues when I move my script to another server
Getting error when script move to other server. > (node:15707) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocU...
C# Getting the IP Address of the client which the UDP server socket received data from
I have a very strange problem. I'm not able to find the IP Address of the client which my server receives data from. Below is my UDP Listener class. The does not contain the IP. The which I referen...
- Modified
- 13 Sep at 09:59
Detect differences between two strings
I have 2 strings ``` string a = "foo bar"; string b = "bar foo"; ``` and I want to detect the changes from `a` to `b`. `a``b` I think there must be a iteration over each character and detect if i...
Consumer "received" event not firing
I'm trying to set up a subscription to a RabbitMQ queue and pass it a custom event handler. So I have a class called `RabbitMQClient` which contains the following method: I'm using dependency injectio...
C# Regex.Split is working differently than JavaScript
I'm trying to convert [this long JS regex](https://github.com/trkbt10/mikan.js/blob/d69f3270d4eb9c6e1363865602cd9fd27bab061b/src/mikan.js#L16) to C#. The **JS code** below gives 29 items in an array s...
- Modified
- 6 May at 20:39
EF Core and Multiple Databases
I have a legacy system with three databases 1. Vendor 2. CustomCode 3. LogData Vendor contains control and log data from our Vendors app. CustomCode contains lots of views and stored procedures ...
- Modified
- 29 Jan at 12:34
F# analog of dependency injection for a real project
The question is based on a great F# / DI related post: [https://fsharpforfunandprofit.com/posts/dependency-injection-1/](https://fsharpforfunandprofit.com/posts/dependency-injection-1/) I tried to po...
- Modified
- 3 Sep at 22:23
How exactly does Microsoft.Extensions.Configuration dependent on ASP.NET Core?
Does ASP.NET Core implement `IConfiguration` access to config values? Most likely my question arose because I don't understand what exactly ASP.NET Core is. Well, I know it's a web framework, Not sur...
- Modified
- 30 Jan at 09:28
Angular 6 Downloading file from rest api
I have my REST API where I put my pdf file, now I want my angular app to download it on click via my web browser but I got HttpErrorResponse "Unexpected token % in JSON at position 0" "SyntaxError:...
- Modified
- 3 Sep at 18:44
what should be the key length in signingCredentials jwt asp.net core
``` public static string GenerateToken(string Username) { var claimsdata = new[] { new Claim(ClaimTypes.Name, Username) }; var key = new SymmetricSecurityKey( Encoding.UTF8.GetBytes("q...
- Modified
- 22 Feb at 20:56
Converting from json to List<object> causing exception
So here is my problem, I have an API setup that returns results from Azure Storage Table in JSON string format : ``` [{ "CustID": "f3b6.....0768bec", "Title": "Timesheet", "Ca...
JetBrain Rider: viewing List<> during debugging
I'm trying to view the content of a List<> during debugging. Unfortunately I can't see them, cause I get the following message within the variables window: > corvalue.GetExactTypeSafe(out type). The...
dotnet publish only one project from the solution in VSTS
We are trying to build one project from a Visual Studio solution in VSTS with [.NET Core](https://learn.microsoft.com/en-us/vsts/pipelines/languages/dotnet-core?view=vsts&tabs=yaml) task. We are able ...
- Modified
- 4 Sep at 08:24
QueueTriggerAttribute Missing
I have created an Azure function using the `3.0.0-beta8` version of the `Microsoft.Azure.Functions`, `Microsoft.Azure.Functions.Core` and the `Microsoft.Azure.WebJobs.Extensions` NuGet packages, and ...
- Modified
- 2 May at 10:18
How to get response from IPN cryptocurrencies
We're trying to receive payment with cryptocurrencies using coinpayment IPN. We are able to create a request and able to do a payment. However, not able to get success or failure response while user c...
- Modified
- 19 Aug at 17:0
How to replace Middleware in integration tests project
I have startup cs where I register AuthenticationMiddleware like this: ``` public class Startup { public void Configure(IApplicationBuilder app, IHostingEnvironment env) { ... ...
- Modified
- 2 Sep at 12:12
The application completed without reading the entire request body, .net core 2.1.1
I have created a user register controller to register users with repository design pattern. My controller looks like this. ``` [Route("api/[controller]")] public class AuthController : Controller...
- Modified
- 27 Jan at 04:3
How to edit the DataTypes of properties in UserAuth
I am new to ServiceStack, The extensiblity of this framework just blow my mind. but it didnt seems to me any example to extend the data type of UserAuth. The IUserAuth interface seems to be tightly co...
- Modified
- 1 Sep at 09:17
Pass parameters to ExecuteSql()
I am trying to pass a table name as a parameter to the `ExecuteSql()` method. This is what I have tried: ``` var viewName = "search_view"; using (var db = dbFactory.Open()) { ...
- Modified
- 20 Jun at 09:12
How to add padding and margin to all Material-UI components?
I need to add padding or margin to some of Material-UI components, but could not find an easy way to do it. Can I add these properties ? something like this: ``` <Button color="default" padding={10} ...
- Modified
- 16 Dec at 07:58
ILogger and DependencyInjection in ASP.NET Core 2+
I notice there is no explicit `ILogger` registration in `ConfigureServices` in `Startup.cs`. First question: how does `ILogger` get injected into e.g. controllers. Second question: how do I configur...
- Modified
- 26 Jul at 12:26