Related to microsoft/kiota#2963
We should add samples of reading request/response headers in the languages supported.
In C# this looks to be close to
var headersInspectionHandlerOption = new HeadersInspectionHandlerOption()
{
InspectResponseHeaders = true // specific you wish to collect reponse headers
};
//add the option
var user = graphClient.Users["user-id"].GetAsync(requestConfiguration => requestConfiguration.Options.Add(headersInspectionHandlerOption));
//use the key to get the header.
var locationHeader = headersInspectionHandlerOption.ResponseHeaders["Location"];