ladeak
ladeak
Using ServerLoggerInterceptor everywhere in the document, because that is the type name also used by the samples, ie. when registering the interceptor to the services. Fixes #27375
ServerLoggerInterceptor and ServerLoggingInterceptor type name should match for the gRPC server interceptor samples. --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com ➟ GitHub...
# HttpSys request headers Keys and Count both allocate Currently Count and Keys allocate strings and arrays and enumerables. This change intends to reduce the cost of allocation. ## Description...
## Question What are the plans for the next release of EF6? I wonder when https://github.com/dotnet/ef6/issues/823 is going to be available? I see [documentation](https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-7.0/plan#theme-clear-path-forward-from-ef6) says: > In addition, we plan...
I have four lights, all functioning, all in the same room, same network. 2 of them are found and 2 of them are never found by the library. (it is...
Source/Identifier is a fixed, random generated value. Sequence is autoincrementing Addresses Issue #13
Changing initial identifier value from 1 to 2 to match with the documentation of the Lifx LAN API FrameHeader's source field. (ref: https://lan.developer.lifx.com/docs/packet-contents#frame-header) Addresses Issue #13
# Allow the HTTP2 encoder to split headers across frames Enable Kestrel's HTTP2 to split large HTTP headers into HEADER and CONTINUATION frames. ## Description Kestrel's HTTP2 implementation limits the...
## Summary Methods in [StringUtilities.cs](https://github.com/dotnet/aspnetcore/blob/main/src/Shared/ServerInfrastructure/StringUtilities.cs) could have implementation without 'unsafe' keyword. It would allow `HttpUtilities.GetHeaderName` to also become safe as .NET 9 supports passing `Span` (to generic type parameters). ##...