WebClientProtocol.Url 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置客户端正在请求的 XML Web services 的基 URL。
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
属性值
客户端正在请求的 XML Web services 的基 URL。 默认值为 Empty。
- 属性
示例
以下示例将 Url XML Web 服务的 属性 math
更改为名为 的 http:// www.contoso.com
Web 服务器。
// 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 由从中生成代理类的服务说明中找到的位置属性确定。
支持特定协议(例如 和HttpPostClientProtocol)HttpGetClientProtocol的派生类可能会添加额外的信息,Url以发出 XML Web 服务请求。
Url可以更改 属性,以引用实现代理类从中生成的相同服务说明的任何 XML Web 服务。