Not
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
This example shows how to typecast a WebRequest so that you can access protocol specific properties.
Example
HttpWebRequest httpreq =
(HttpWebRequest) WebRequest.Create("https://www.contoso.com/");
Dim httpreq As HttpWebRequest = _
CType(WebRequest.Create("https://www.contoso.com/"), HttpWebRequest)