C#
C#
Get a REST Response Header by Name
See more REST Examples
Demonstrates Rest.ResponseHdrByName, which returns the value of a response header field by name. Header field names are case-insensitive.
Background. Response headers are available after ReadResponseHeader has read the status line and headers. Lookup by name is convenient when a specific header, such as Content-Type, is needed.
Chilkat C# Downloads
bool success = false;
Chilkat.Rest rest = new Chilkat.Rest();
bool bTls = true;
bool bAutoReconnect = true;
success = rest.Connect("example.com",443,bTls,bAutoReconnect);
if (success == false) {
Debug.WriteLine(rest.LastErrorText);
return;
}
success = rest.SendReqNoBody("GET","/api/items/123");
if (success == false) {
Debug.WriteLine(rest.LastErrorText);
return;
}
int statusCode = rest.ReadResponseHeader();
if (statusCode < 0) {
Debug.WriteLine(rest.LastErrorText);
return;
}
// Return the value of a response header field by name. Header field names are case-insensitive.
string contentType = rest.ResponseHdrByName("Content-Type");
if (rest.LastMethodSuccess == false) {
Debug.WriteLine(rest.LastErrorText);
return;
}
Debug.WriteLine("Content-Type: " + contentType);