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