MenuHomeBadgesOleg Kyrylchuk Published on 9 min readTable of contentsDateOnly and TimeOnlyParallel.ForEachAsyncArgumentNullException.ThrowIfNull()PriorityQueueReading and Writing FilesA New PeriodicTimerMetrics APIReflection API for Nullability InformationReflection API for Nested Nullability InformationProcess Path and IDA New Configuration HelperCSPNGNative Memory APIPower of 2WaitAsync on TaskNew Math APIsCollectionsMarshal.GetValueRefOrNullRefConfigureHostOptionsCreate Async ScopeSimplified Call P...
Avanindra November 15th, 2021 Azure Active Directory’s gateway service is a reverse proxy that fronts hundreds of services that make up Azure Active Directory (Azure AD). If you’ve used services such as office.com, outlook.com, portal.azure.com or xbox.live.com, then you’ve used Azure AD’s gateway. The gateway provides features such as TLS termination, automatic failovers/retries, geo-proximity routing, throttling, and tarpitting to services in Azure AD. The gateway is present in 54 Azure datacenters w...
aboutblogpodcastyoutubespeaking browse by category or dateParallel.ForEachAsync in .NET 6Comment on this post [1]Posted in DotNetCore | Open Source Sponsored By Great tweet from Oleg Kyrylchuk (follow him!) showing how cool Parallel.ForEachAsync is in .NET 6. It's new! Let's look at this clean bit of code in .NET 6 that calls the public GitHub API and retrieves n number of names and bios, given a list of GitHub users:using System.Net.Http.Headers; using System.Ne...
Skip to content Sign up Why GitHub? Features →Mobile →Actions →Codespaces →Packages →Security →Code review →Issues →Integrations →GitHub Sponsors →Customer stories→TeamEnterprise Explore Explore GitHub →Learn and contributeTopics →Collections →Trending →Learning Lab →Open source guides →Connect with othersThe ReadME Project →Events →Community forum →GitHub Education →GitHub Stars program →Market...
David August 23rd, 2021 .NET 6 is on the way, and I wanted to share some of my favorite new APIs in .NET and ASP.NET Core that you are going to love. Why are you going to love them? Well because they were directly driven by our fantastic .NET developer community! Let’s get started!Reading & Writing Files In .NET 6, there’s a new low-level API to enable reading/writing of files without using a FileStream. It also supports scatter/gather IO (multiple buffers) and overlapping reads and writes at a given...
Sztuka programowania 1164 dni, 19 godzin, 8 minut temu 53 źrodło rozwiń
Welcome the summer with the release of the early preview of the Telerik UI for MAUI suite!All Products Product BundlesDevCraft All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:Conversational UIOnline TrainingDocument Processing LibraryEmbedded Reporting for web and desktopWebKendo UIUI for jQueryUI for AngularUI for ReactUI for VueUI for ASP.NET AJAXUI for ASP.NET MVCUI for ASP.NET CoreUI for BlazorUI for SilverlightUI for PHPUI for JSPMobileUI for MAUIUI for X...
A new Blazor feature for ASP.NET Core 6 is custom events. With them, we can add custom logic to browser events. In this post we are going to implement a “multimedia paste”. What we will do is allow users to paste both text and images into a textarea. For that we will use a custom event. For this example I will use ASP.NET Core 6 and a Blazor WASM app. We need to configure the new event in two places, in JavaScript and in Blazor. Let’s start with JavaScript. JavaScript In JavaScript we ind...
News.NET 6 Preview 4 Ships 'Ready for Real-World Testing'David Ramel05/25/2021 Many features in the just-shipped .NET 6 Preview 4 are close to being in final form, Microsoft says, making it "ready for real world testing if you haven't yet tried .NET 6 in your environment." That doesn't mean it's ready for production use, though, as "go live" builds for that aren't expected until August, ahead of a newly finalized Nov. 9 GA release date. At that time, Microsoft's massive effort to unify all .NET...
25th May 202125th May 2021Steve Gordon.NET 6 In .NET 6 (preview 4), two long-awaited types have been introduced as part of the core library. DateOnly and TimeOnly allow developers to represent either the date or time portion of a DateTime. These two new types are structs (value types) and may be used when your code deals with date or time concepts independently. Both types can be found in the System namespace. Using these new types may align well with how databases allow similar data to be represented. ...