Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 592 Bytes

TROUBLESHOOTING.md

File metadata and controls

19 lines (13 loc) · 592 Bytes

If you have a SendGrid issue, please contact our support team.

Table of Contents

Viewing the Request Body

When debugging or testing, it may be useful to examine the raw request body to compare against the documented format.

e.g. on a Client instance, myClient.

foreach (KeyValuePair<DateTime, string> kvp in myClient.RequestHeaders)
{
    Console.WriteLine("Name = {0}, Value = {1}", kvp.Key, kvp.Value);
}