1,622,259 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
Score of 1
1 answer
83 views
How to speed up the creation of an HttpClient?
I'm replacing a COM call by REST API calls. In order to do this, I am creating an HttpClient with these lines of code:
LogToFile("Start HTTP client");
_sharedHttpClient = new HttpClient(...
- reputation score 17663
Score of 1
0 answers
44 views
How to remove the last frame of the played video in LibVlcSharp
After I play a video on Libvlcsharp and it reaches the End, the last Frame is kept displayed, and it only goes away if I play another video. Is there a way to remove it or set it to black color ...
- reputation score 3005
Score of 1
1 answer
41 views
WinUI 3: dismiss popup when clicking outside popup and textbox
I have a TextBox, when clicked, it opens a Popup.
I want to dismiss the Popup if I click anywhere outside the TextBox and outside the Popup.
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
...
Advice
1
vote
8
replies
111
views
ASP.NET Core learning journey
I'm currently learning backend development with C# and ASP.NET. Instead of following video tutorials, I've been trying to learn by building things myself.
At first, I had AI generate a few simple ...
- reputation score 1
Score of 0
0 answers
77 views
How to integrate Wolverine migrations with Entity Framework Core
I want to setup WolverineFx to add its tables (outbox and inbox pattern) to my migrations when calling Add-Migration using Entity Framework Core tools. Unfortunately, for 13 hours straight, I'm ...
- reputation score 1088
Score of 0
0 answers
98 views
Player line movement speed issue [closed]
These two snippets of code are supposed to be for a line of characters moving, however, follower_1 walks faster than leader, so they end up overlapping. The correct end result would end up being the ...
- reputation score 11
Advice
0
votes
6
replies
146
views
Overhead/Performance of C# IEnumerables implemented with yield return
What is the overhead generated by functions like the in the example below?
public IEnumerable<int> Range(int end) {
for (int i = 0; i < end; i++)
yield return i;
}
What does it ...
- reputation score 855
Score of 0
0 answers
65 views
PKCS#11 token is detected but no certificates are returned in a .NET application on Linux [closed]
I'm debugging a PKCS#11 integration on Arch Linux.
The setup is:
- Arch Linux
- PKCS#11 USB token
- .NET application using Pkcs11Interop
- Vendor PKCS#11 library
The strange part is:
- The application ...
- reputation score 11
Advice
0
votes
4
replies
78
views
Fix for C# Raw Socket, Error 10013 "An attempt was made to access a socket in a way forbidden by its access permissions"
After scouring the internet for hours I've found an obscure cause for the 10013 error code when using SocketType.Raw sockets in c#, leaving this here for anyone else who has a similar issue.
When ...
Score of 0
0 answers
59 views
dot net 10: When embedding an UIImagePickerController as a child view controller (camera) a UIAlertViewcontroller pops up "Flash Is Disabled"
I am trying to embed a camera into a view controller So I thourght I would use the UIImagePickerController rather that Using an AVCaptureDevice so a added this code
private void ...
Score of 0
0 answers
103 views
C# JSON Deserialized object JsonPropertyName retained [duplicate]
I'm using System.Text.Json and I'm having a problem deserializing JSON data. It is deserializing into the object properly, but the return data still is using the JSON property name.
I have a C# API ...
- reputation score 101
Advice
0
votes
2
replies
133
views
Learning WinTAK integration with Maltego
I was able to get some experience with ArcGIS while I was active-duty Army; it has been a long time since I have been able to use the software so my skills have deteriorated considerably. To my ...
- reputation score 1
Score of -1
1 answer
89 views
Custom non earth Maps with Livecharts and GeoJson [closed]
I am attempting to use Livecharts with Avalonia to display a custom map (hexagonal tiling of the plane), and then colour in the areas according to data. Basically I want all the functionality of a map ...
- reputation score 73
Advice
1
vote
16
replies
197
views
Wpf or Win Forms - tile editor
I'm trying to create a console application game to really push the boundaries of what a console game can do and look like. I'm going to need to create maps with ASCII tiles and think it could be fun ...
- reputation score 1
Score of 0
0 answers
107 views
Response.Cookies.Append not setting cookie in browser
I have an existing ASP.NET Core Web API that handles authentication. I am currently building a new Blazor Server (MudBlazor) frontend to consume this API.
The login process itself works perfectly – ...
- reputation score 618