Functions/Cache/Import-CachedWebRequest.ps1
1 2 3 4 5 6 7 8 9 10 11 |
function Import-CachedWebRequest { [CmdletBinding()] param( [Parameter(Mandatory)] [ValidateNotNullOrEmpty()] [string] $Path ) $script:Cache = Import-Clixml -Path $Path } |