Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/RA/ResponseContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,13 @@ public ResponseContext(HttpStatusCode statusCode, string content, Dictionary<str
Initialize();
}

/// <summary>
/// Retrieve the specified response header.
/// </summary>
/// <param name="name">The header name.</param>
/// <returns>The header value.</returns>
public string RetrieveHeader(string name) => HeaderValue(name);

/// <summary>
/// Retrieve an object from the response document.
/// </summary>
Expand Down