WebClientProtocol.Url Свойство

Определение

Получает или задает URL-адрес веб-службы XML, запрашиваемой клиентом.

public:
 property System::String ^ Url { System::String ^ get(); void set(System::String ^ value); };
public string Url { get; set; }
[System.ComponentModel.SettingsBindable(true)]
public string Url { get; set; }
member this.Url : string with get, set
[<System.ComponentModel.SettingsBindable(true)>]
member this.Url : string with get, set
Public Property Url As String

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

Основной URL-адрес веб-службы XML, запрошенной клиентом. Значение по умолчанию — Empty.

Атрибуты

Примеры

В следующем примере свойство math веб-службы XML изменяется Url на веб-сервер с именем http:// www.contoso.com.

// Set the URL property to a different Web server than that described in the
// service description.
math->Url = "http://www.contoso.com/math.asmx";
int total = math->Add( Convert::ToInt32( Num1.Text ), Convert::ToInt32( Num2.Text ) );
// Set the URL property to a different Web server than that described in the
// service description.
math.Url = "http://www.contoso.com/math.asmx";
int total = math.Add(Convert.ToInt32(Num1.Text), Convert.ToInt32(Num2.Text));
' Set the URL property to a different Web server than that described in the
' service description.
math.Url = "http://www.contoso.com/math.asmx"
Dim total As Integer = math.Add(Convert.ToInt32(Num1.Text), _
                                 Convert.ToInt32(Num2.Text))

Комментарии

Классы прокси,созданные с помощью Wsdl.exe, задали свойство по умолчанию Url для использования клиентом. Значение по умолчанию Url определяется атрибутом location, найденным в описании службы, из которого был создан прокси-класс.

Производные классы, поддерживающие определенные протоколы, такие как HttpGetClientProtocol и HttpPostClientProtocol , могут добавлять дополнительные сведения для Url выполнения запроса веб-службы XML.

Свойство Url можно изменить, чтобы ссылаться на любую веб-службу XML, реализующую то же описание службы, из которому был создан прокси-класс.

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

См. также раздел