Power off Xbox Series controller with C# via Bluetooth
I am writing a small C# winforms tray app targeting 4.7.2 that will allow me to power down the controller on game exit. I've been trying to do this for some time now but still can't manage to achieve the controller disconnection. Is there a way to…
Developer technologies | C#
how to name a method starting async but not returning awaitable type
this is a line from msdn which i could not understand as there was no examle pls give one example https://learn.microsoft.com/en-us/dotnet/csharp/asynchronous-programming/task-asynchronous-programming-model#BKMK_ReturnTypesandParameters Methods that…
Developer technologies | ASP.NET | ASP.NET Core

Question For Printing in avalonia ui for multiple size directly and Sintly
Hello Developer. i want to ask how i can print invoice or pdf ... from my avalonia ui app (some as WPF) directly withtout any dialog show from code sintly. i see multiple option some as questpdf but it not have any api for printing it be generate a pdf
Developer technologies | Windows Presentation Foundation
how to handle if async process returns before await.
ifGetStringAsync (and therefore getStringTask) completes before GetUrlContentLengthAsync awaits it, control remains in GetUrlContentLengthAsync. The expense of suspending and then returning to GetUrlContentLengthAsync would be wasted if the called…
Developer technologies | ASP.NET | ASP.NET Core

Has anyone successfully targeted Android API Level 35 in a .NET MAUI app?
I recently got a critical warning from Google Play Console: "2 of your apps are targeting an old version of Android. Google Play requires all apps to meet target API level requirements before August 31, 2025." I'm currently targeting:…
Developer technologies | .NET | .NET MAUI
Binding null, but is working
In have my viewModel using System.Collections.ObjectModel; namespace FireChat.ViewModels; public partial class AppShellViewModel : BaseViewModel { readonly FirebaseAuthClient _authClient; readonly WeakReferenceMessenger _messenger; …
Developer technologies | .NET | .NET MAUI
UWP BLE not working for authenticated attributes
I can't write to the CCCD on a BLE device that has the authentication flag enabled on the CCCD
Developer technologies | Universal Windows Platform (UWP)
On macOS: How to install .pkg created with dotnet publish ?
dotnet --version 9.0.301 My MAUI app. is upgraded to .NET 9. I just created a .pkg with the command: dotnet publish ChronoWiz/ChronoWiz.csproj -f net9.0-maccatalyst -c Release -p:MtouchLink=SdkOnly -p:CreatePackage=true -p:UseHardenedRuntime=true -o…
Developer technologies | .NET | .NET MAUI
how or where a sync function in a web API controller can help me?
hi, I just made one web API with core 9 with entity framework and all actions, i found that all the methods are made with a sync. q1) so my question is where or how it can help me , because in my case i call my controllers action methods from java…
Developer technologies | ASP.NET | ASP.NET API
Maui project not build after added this plugin "Plugin.Firebase.Analytics"
Maui project not build after added this plugin "Plugin.Firebase.Analytics" Create New Project -> Update All Packages -> Add "Plugin.Firebase.Analytics" NuGet package -> After clean Project -> Rebuild the project and it'…
Developer technologies | .NET | .NET MAUI
Unable to Use MicrosoftReport Viwer in containerized environment
HI team , I am have a Asp.net application with 4.7.2 version and my reporting relay on RDLC and XSLT templates , with microsoft reportviewerversion 15 , I am trying to Run in a containerized Environment with ECS on AWS Fargate with windows support ISSUE…
Developer technologies | ASP.NET | ASP.NET API
composite key http
@Html.ActionLink("Edit", "Edit", new { item.monthr,item.tennant }) getting an error . monthr and tennant are the keys.
Developer technologies | ASP.NET | ASP.NET Core
Blazor WebAssembly not applying culture to DateTime formatting after changing culture
Hi, I recently migrated my Blazor project from Blazor Server to Blazor WebAssembly. In the Blazor Server version, when I changed the culture (e.g., CultureInfo.CurrentUICulture = new CultureInfo("fa-IR")), both the localized texts from .resx…
Developer technologies | ASP.NET | ASP.NET Core

Do Dev Tunnels Have an HTTP Timeout Issue?
Using a dev tunnel to connect a Mac client app to an ASP.NET service running on a PC has raised a timeout issue. One API call takes about 70 seconds to complete, but when the client runs on the Mac via the dev tunnel, an HTTP timeout occurs after 60…
Developer technologies | ASP.NET | ASP.NET API
Visual Studio 2022 Enterprise cannot create an ASP.NET using .NET8
I use Visual Studio 2022 Enterprise. Try to create an ASP.NET Web application using .NET8 framework. However, .NET8 is not listed in "Targeted framework drop list". How to create an ASP.NET Web Applicaiton using .NET8 framework? How to…
Developer technologies | ASP.NET | ASP.NET Core
how to use this in .net android?
create a view and draw it in onDraw or give background to imageView?
Developer technologies | .NET | .NET MAUI
What is the differences between Object class and Lock class in mutual exclusion in C#?
Hello, When should I use the Lock class and when should I use the Object class? What is the differences between Object class and Lock class in mutual exclusion in C#? using System.Globalization; namespace ConsoleApp3 { internal class Program { …
Developer technologies | C#
Good installer for visual studio 2019 c# projects
Still using Visual Studio 2019 professional. I have several independent solutions (single project solutions). I need to create an installer that installs 6 different projects on a computer. Right now, I have a single deployment project in each…
Developer technologies | C#
E_ACCESSDENIED error when IStream::Seek on Stream created using CreateStreamOnHGlobal on Windows 11 24H2 client
Hello all, After days of debugging, I found I am getting E_ACCESSDENIED error on the server side (Windows Server 2022) when I try to seek to the beginning of a stream: `ULARGE_INTEGER lPos;` LARGE_INTEGER lZero; lZero.QuadPart = 0; auto hrTemp =…
Developer technologies | C++


Attaching to WSL process from a visual studio extension.
I can attach to a WSL process in visual studio by going Debug -> 'Attach To Process' in the menu, then setting the 'Connection type' to 'Windows subsystem for Linux', selecting the process from the list, and clicking the 'attach' button. How can I do…