10 references to TryWriteUInt32BigEndian
Microsoft.AspNetCore.Server.Kestrel.Core (1)
src\aspnetcore\src\Shared\runtime\Http3\Helpers\VariableLengthIntegerHelper.cs (1)
171
if (BinaryPrimitives.
TryWriteUInt32BigEndian
(buffer, (uint)longToEncode | FourByteLengthMask))
Microsoft.Extensions.ServiceDiscovery.Dns.Tests (5)
Resolver\LoopbackDnsServer.cs (5)
279
!BinaryPrimitives.
TryWriteUInt32BigEndian
(buff.AsSpan(w1 + w2), serial) ||
280
!BinaryPrimitives.
TryWriteUInt32BigEndian
(buff.AsSpan(w1 + w2 + 4), refresh) ||
281
!BinaryPrimitives.
TryWriteUInt32BigEndian
(buff.AsSpan(w1 + w2 + 8), retry) ||
282
!BinaryPrimitives.
TryWriteUInt32BigEndian
(buff.AsSpan(w1 + w2 + 12), expire) ||
283
!BinaryPrimitives.
TryWriteUInt32BigEndian
(buff.AsSpan(w1 + w2 + 16), minimum))
System.Net.Http (1)
src\runtime\src\libraries\Common\src\System\Net\Http\aspnetcore\Http3\Helpers\VariableLengthIntegerHelper.cs (1)
171
if (BinaryPrimitives.
TryWriteUInt32BigEndian
(buffer, (uint)longToEncode | FourByteLengthMask))
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
909
if (BinaryPrimitives.
TryWriteUInt32BigEndian
(destination, Number.UnpackDecimalIeee754<Decimal32, uint>(_value).Significand))
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
753
if (BinaryPrimitives.
TryWriteUInt32BigEndian
(destination, Significand))
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
445
if (BinaryPrimitives.
TryWriteUInt32BigEndian
(destination, m_value))