deepsourcestatus / test-repository

Audit: Consider using System.URI instead of strings CS-A1000
Security
Major
8 months ago8 months old
Use System.Uri instead of string when dealing with Uris
18
19    // CS-A1000: Use `System.URI` where possible.
20    // https://deepsource.io/directory/analyzers/csharp/issues/CS-A1000
21    public static string GetEndpointUri()22    {
23        return "http://www.contoso.com/";
24    }