public bool TryGetValue(string name, out string value)
 {
     return(_request.TryGetHeader(name, out value));
 }
Exemplo n.º 2
0
 public bool TryGetValue(string name, [NotNullWhen(true)] out string?value)
 {
     return(_request.TryGetHeader(name, out value));
 }