AppInsights.Enricher.Rewind.KeyGenerator.Response C# (CSharp) Method

Response() static private method

static private Response ( string id ) : string
id string
return string
        internal static string Response(string id) => $"Response_{id}";
    }

Usage Example

Beispiel #1
0
 public IResult <Unit> SetBody(HttpContext context, IActionResult result) =>
 ReadResponse(result)
 .Bind(body => SetEntryInCache(KeyGenerator.Response(context.TraceIdentifier), body));