![]() |
Chilkat • HOME • Android™ • AutoIt • C • C# • C++ • Chilkat2-Python • CkPython • Classic ASP • DataFlex • Delphi DLL • Go • Java • Node.js • Objective-C • PHP Extension • Perl • PowerBuilder • PowerShell • PureBasic • Ruby • SQL Server • Swift • Tcl • Unicode C • Unicode C++ • VB.NET • VBScript • Visual Basic 6.0 • Visual FoxPro • Xojo Plugin
(PowerShell) Get Response Header for Method that does not Return HttpResponse ObjectDemonstrates how to get the response header and individual response header fields for a method that does not return an HTTP response object. (If a method returns an HHTTP response object, then the response header information should be obtained from the response object.)
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll" # This example requires the Chilkat API to have been previously unlocked. # See Global Unlock Sample for sample code. $http = New-Object Chilkat.Http $strHtml = $http.QuickGetStr("https://www.duckduckgo.com/") if ($http.LastMethodSuccess -eq $false) { $($http.LastErrorText) exit } $($http.LastResponseHeader) # Here's a sample HTTP response header: # Server: nginx # Date: Wed, 30 Sep 2020 13:13:02 GMT # Content-Type: text/html; charset=UTF-8 # Transfer-Encoding: chunked # Connection: keep-alive # Vary: Accept-Encoding # ETag: W/"5f7371f4-1683" # Strict-Transport-Security: max-age=31536000 # X-Frame-Options: SAMEORIGIN # Content-Security-Policy: default-src https: blob: data: 'unsafe-inline' 'unsafe-eval'; frame-ancestors 'self' # X-XSS-Protection: 1;mode=block # X-Content-Type-Options: nosniff # Referrer-Policy: origin # Expect-CT: max-age=0 # Expires: Wed, 30 Sep 2020 13:13:01 GMT # Cache-Control: no-cache # Content-Encoding: gzip # We can load it into a Chilkat MIME object to get header field values: $mime = New-Object Chilkat.Mime $success = $mime.LoadMime($http.LastResponseHeader) if ($success -eq $false) { $($mime.LastErrorText) exit } # Get MIME header field values using Chilkat MIME... $("----") $("ETag: " + $mime.GetHeaderField("ETag")) |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.