WebClientProtocol.Url Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit l'URL de base du service Web XML demandé par le client.
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
Valeur de propriété
URL de base du service Web XML demandé par le client. La valeur par défaut est Empty.
- Attributs
Exemples
L’exemple suivant modifie la Url propriété du math
service Web XML en serveur web nommé 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))
Remarques
Les classes proxy générées à l’aide de Wsdl.exe définissent une propriété par défaut Url que le client doit utiliser. La valeur par défaut Url est déterminée par l’attribut d’emplacement trouvé dans la description du service à partir duquel la classe proxy a été générée.
Les classes dérivées prenant en charge des protocoles spécifiques, tels que HttpGetClientProtocol et HttpPostClientProtocol , peuvent ajouter des informations supplémentaires pour Url effectuer la demande de service Web XML.
La Url propriété peut être modifiée pour faire référence à n’importe quel service Web XML qui implémente la même description de service à partir de laquelle la classe proxy a été générée.