Aracılığıyla paylaş


WebClientProtocol.Url Özellik

Tanım

İstemcinin istediği XML Web hizmetinin temel URL'sini alır veya ayarlar.

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

Özellik Değeri

İstemcinin istediği XML Web hizmetinin temel URL'si. Varsayılan değer: Empty.

Öznitelikler

Örnekler

Aşağıdaki örnek, XML Web hizmetinin özelliğini math adlı http:// www.contoso.comWeb sunucusuyla değiştirirUrl.

// 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))

Açıklamalar

Wsdl.exe kullanılarak oluşturulan ara sunucu sınıfları, istemcinin kullanması için varsayılan Url bir özellik ayarlar. Varsayılan Url değer, ara sunucu sınıfının oluşturulduğu hizmet açıklamasında bulunan konum özniteliği tarafından belirlenir.

ve gibi HttpGetClientProtocolHttpPostClientProtocol belirli protokolleri destekleyen türetilmiş sınıflar, XML Web hizmeti isteğinde bulunmak için öğesine Url ek bilgi ekleyebilir.

özelliği, Url ara sunucu sınıfının oluşturulduğu hizmet açıklamasını uygulayan herhangi bir XML Web hizmetine başvuracak şekilde değiştirilebilir.

Şunlara uygulanır

Ayrıca bkz.