WebClientProtocol.Url Properti
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Mendapatkan atau mengatur URL dasar layanan Web XML yang diminta klien.
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
Nilai Properti
URL dasar layanan Web XML yang diminta klien. Default adalah Empty.
- Atribut
Contoh
Contoh berikut mengubah Url properti untuk math
layanan Web XML ke server Web bernama 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))
Keterangan
Kelas proksi yang dihasilkan menggunakan Wsdl.exe akan mengatur properti default Url untuk digunakan klien. Default Url ditentukan oleh atribut lokasi yang ditemukan dalam deskripsi layanan tempat kelas proksi dihasilkan.
Kelas turunan yang mendukung protokol tertentu, seperti HttpGetClientProtocol dan HttpPostClientProtocol mungkin menambahkan informasi tambahan untuk Url membuat permintaan layanan Web XML.
Url Properti dapat diubah untuk merujuk ke layanan Web XML apa pun yang mengimplementasikan deskripsi layanan yang sama dengan asal kelas proksi.