Прочитать на английском

Поделиться через


FileWebResponse.ResponseUri Свойство

Определение

Возвращает URI ресурса файловой системы, предоставившего ответ.

C#
public override Uri ResponseUri { get; }

Значение свойства

Uri

Экземпляр класса Uri, содержащий URI ресурса файловой системы, предоставившего ответ.

Примеры

В следующем примере используется ResponseUri для получения URI ресурса файловой системы, который предоставил ответ.

C#
public static void GetPage (String url)
{
    try
    {
        Uri fileUrl = new Uri ("file://" + url);

        // Create a 'FileWebrequest' object with the specified Uri .
        FileWebRequest myFileWebRequest = (FileWebRequest)WebRequest.Create (fileUrl);

        // Send the 'fileWebRequest' and wait for response.
        FileWebResponse myFileWebResponse = (FileWebResponse)myFileWebRequest.GetResponse ();

        Console.WriteLine ("\nThe Uri of the file system resource that provided the response is :\n{0}\n\n", myFileWebResponse.ResponseUri);

        // Release resources of response object.
        myFileWebResponse.Close ();
    }
    catch (WebException e)
    {
        Console.WriteLine ("\r\nWebException thrown. The Reason for failure is : {0}", e.Status);
    }
    catch (Exception e)
    {
        Console.WriteLine ("\nThe following Exception was raised : {0}", e.Message);
    }
}

Комментарии

Свойство ResponseUri содержит универсальный код ресурса (URI) ресурса файловой системы, который предоставил ответ. Это всегда запрошенный ресурс файловой системы.

Применяется к

Продукт Версии
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1