WebReference.ProtocolName Propriedade
Definição
Obtém ou define o protocolo associado à referência Web.Gets or sets the protocol associated with the Web reference.
public:
property System::String ^ ProtocolName { System::String ^ get(); void set(System::String ^ value); };
public string ProtocolName { get; set; }
member this.ProtocolName : string with get, set
Public Property ProtocolName As String
Valor da propriedade
Um String que contém o nome do protocolo associado à referência Web.A String containing the name of the protocol associated with the Web reference.
Exemplos
O exemplo de código a seguir ilustra o uso dessa propriedade.The following code example illustrates the use of this property. Este exemplo de código faz parte de um exemplo maior fornecido para a WebReference classe.This code example is part of a larger example provided for the WebReference class.
// Create a web referernce using the WSDL collection.
WebReference reference = new WebReference(wsdlCollection, space);
reference.ProtocolName = "Soap12";
Comentários
As cadeias de caracteres de protocolo permitidas incluem "SOAP" (indicando SOAP 1,0) e "Soap12" (indicando SOAP 1,2).Allowed protocol strings include "Soap" (indicating SOAP 1.0) and "Soap12" (indicating SOAP 1.2). O valor dessa propriedade determina o protocolo usado pelos clientes proxy ao contatar qualquer serviço Web XML na Documents coleção.The value of this property determines the protocol used by proxy clients when contacting any XML Web service in the Documents collection.
Para obter mais informações sobre SOAP, consulte o site World Wide Web Consortium .For more information on SOAP, see the World Wide Web Consortium website.