Establecer encabezado cuando llame a HTTPClient.PostAsync

¿Dónde puedo configurar el encabezado para la llamada de servicio REST cuando uso HTTPClient simple?

Hago :

    HttpClient client = new HttpClient();
    var values = new Dictionary<string, string>
{
        {"id", "111"},
        {"amount", "22"}
};
    var content = new FormUrlEncodedContent(values);
    var uri = new Uri(@"https://some.ns.restlet.uri");

    var response = await client.PostAsync(uri, content);
    var responseString = await response.Content.ReadAsStringAsync();

UPD

El encabezado que no quiero agregar es:

{"Authorization":"NLAuth nlauth_account=5731597_SB1, [email protected], nlauth_signature=Pswd1234567, nlauth_role=3","Content-Type":"application/json"}

¿Debo seguir?

client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Authorization", "NLAuth nlauth_account=5731597_SB1, [email protected], nlauth_signature=Pswd1234567, nlauth_role=3","Content-Type":"application/json");

Respuestas a la pregunta(2)

Su respuesta a la pregunta