<PackageReference Include="Polly" Version="8.5.0" />

KeyHelper

static class KeyHelper
using System; using System.Runtime.CompilerServices; namespace Polly.Utilities { internal static class KeyHelper { private const int GuidPartLength = 8; [System.Runtime.CompilerServices.NullableContext(1)] public static string GuidPart() { return Guid.NewGuid().ToString().Substring(0, 8); } } }