< Summary - Kestrun — Combined Coverage

Information
Class: Public.Request.Get-KrRequestHeader
Assembly: Kestrun.PowerShell.Public
File(s): /home/runner/work/Kestrun/Kestrun/src/PowerShell/Kestrun/Public/Request/Get-KrRequestHeader.ps1
Tag: Kestrun/Kestrun@2d87023b37eb91155071c91dd3d6a2eeb3004705
Line coverage
0%
Covered lines: 0
Uncovered lines: 14
Coverable lines: 14
Total lines: 88
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Coverage history

Coverage history 0 25 50 75 100 08/26/2025 - 01:25:22 Line coverage: 0% (0/2) Total lines: 28 Tag: Kestrun/Kestrun@07f821172e5dc3657f1be7e6818f18d6721cf38a09/04/2025 - 18:11:31 Line coverage: 0% (0/2) Total lines: 29 Tag: Kestrun/Kestrun@de99e24698289f3f61ac7b73e96092732ae12b0510/15/2025 - 01:01:18 Line coverage: 0% (0/14) Total lines: 88 Tag: Kestrun/Kestrun@7c4ce528870211ad6c2d2398c31ec13097fc5840

Metrics

File(s)

/home/runner/work/Kestrun/Kestrun/src/PowerShell/Kestrun/Public/Request/Get-KrRequestHeader.ps1

#LineLine coverage
 1<#
 2    .SYNOPSIS
 3        Retrieves a request header value from the HTTP request.
 4    .DESCRIPTION
 5        This function accesses the current HTTP request context and retrieves the value
 6        of the specified request header by name.
 7    .PARAMETER Name
 8        The name of the request header to retrieve from the HTTP request.
 9    .PARAMETER AsInt
 10        If specified, converts the header value to an integer.
 11    .PARAMETER AsBool
 12        If specified, converts the header value to a boolean.
 13    .PARAMETER AsDouble
 14        If specified, converts the header value to a double.
 15    .PARAMETER AsString
 16        If specified, converts the header value to a string.
 17    .PARAMETER ThrowIfMissing
 18        If specified, throws an error if the header is not found.
 19        By default, it returns $null if not found.
 20    .EXAMPLE
 21        $value = Get-KrRequestHeader -Name "param1"
 22        Retrieves the value of the request header "param1" from the HTTP request.
 23    .EXAMPLE
 24        $id = Get-KrRequestHeader -Name "id" -AsInt -ThrowIfMissing
 25        Retrieves the value of the header "id" as an integer, throwing an error if it's missing.
 26    .EXAMPLE
 27        $flag = Get-KrRequestHeader -Name "flag" -AsBool
 28        Retrieves the value of the header "flag" as a boolean.
 29    .EXAMPLE
 30        $auth = Get-KrRequestHeader -Name "Authorization" -AsString -ThrowIfMissing
 31        Retrieves the value of the "Authorization" header as a string, throwing an error if it's missing.
 32    .OUTPUTS
 33        Returns the value of the specified request header, or $null if not found.
 34    .NOTES
 35        This function is designed to be used in the context of a Kestrun server response.
 36#>
 37function Get-KrRequestHeader {
 38    [KestrunRuntimeApi('Route')]
 39    [CmdletBinding(defaultParameterSetName = 'default')]
 40    [OutputType([string])]
 41    [OutputType([int])]
 42    [OutputType([bool])]
 43    [OutputType([double])]
 44    [OutputType([object])]
 45    param(
 46        [Parameter(Mandatory = $true)]
 47        [string]$Name,
 48
 49        [Parameter(parameterSetName = 'Int')]
 50        [switch]$AsInt,
 51
 52        [Parameter(parameterSetName = 'Bool')]
 53        [switch]$AsBool,
 54
 55        [Parameter(parameterSetName = 'Double')]
 56        [switch]$AsDouble,
 57
 58        [Parameter(parameterSetName = 'String')]
 59        [switch]$AsString,
 60
 61        [Parameter()]
 62        [switch]$ThrowIfMissing
 63    )
 064    if ($null -ne $Context -and $null -ne $Context.Request -and $null -ne $Context.Request.Headers) {
 065        if ($ThrowIfMissing -and -not $Context.Request.Headers.ContainsKey($Name)) {
 066            throw [System.ArgumentException]::new("Missing required header: $Name")
 67        }
 68        # Get the request header value from the request
 069        $value = $Context.Request.Headers[$Name]
 070        if ($AsInt) {
 071            return [int]$value
 72        }
 073        if ($AsBool) {
 074            return [bool]$value
 75        }
 076        if ($AsDouble) {
 077            return [double]$value
 78        }
 079        if ($AsString) {
 080            return $value.ToString()
 81        }
 082        return $value
 83    } else {
 84        # Outside of route context
 085        Write-KrOutsideRouteWarning
 86    }
 87}
 88

Methods/Properties

Get-KrRequestHeader()