File: IFuzzer.cs | Web Access |
Project: src\tests\Microsoft.Extensions.ServiceDiscovery.Dns.Tests.Fuzzing\Microsoft.Extensions.ServiceDiscovery.Dns.Tests.Fuzzing.csproj (Microsoft.Extensions.ServiceDiscovery.Dns.Tests.Fuzzing) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Extensions.ServiceDiscovery.Dns.Tests.Fuzzing; public interface IFuzzer { string Name => GetType().Name; void FuzzTarget(ReadOnlySpan<byte> data); } |