ServiceDescription.RetrievalUrl Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Örneğin uygulandığı XML Web hizmetinin URL'sini ServiceDescription alır veya ayarlar.
public:
property System::String ^ RetrievalUrl { System::String ^ get(); void set(System::String ^ value); };
public string RetrievalUrl { get; set; }
member this.RetrievalUrl : string with get, set
Public Property RetrievalUrl As String
Özellik Değeri
XML Web hizmetinin URL'si. Varsayılan değer boş bir dizedir ("").
Örnekler
ServiceDescription^ myServiceDescription = gcnew ServiceDescription;
myServiceDescription = ServiceDescription::Read( "ServiceDescription_Extensions_Input_cs.wsdl" );
Console::WriteLine( myServiceDescription->Bindings[ 1 ]->Extensions[ 0 ] );
SoapBinding^ mySoapBinding = gcnew SoapBinding;
mySoapBinding->Required = true;
SoapBinding^ mySoapBinding1 = gcnew SoapBinding;
mySoapBinding1->Required = false;
myServiceDescription->Extensions->Add( mySoapBinding );
myServiceDescription->Extensions->Add( mySoapBinding1 );
System::Collections::IEnumerator^ myEnum = myServiceDescription->Extensions->GetEnumerator();
while ( myEnum->MoveNext() )
{
ServiceDescriptionFormatExtension^ myServiceDescriptionFormatExtension = (ServiceDescriptionFormatExtension^)(myEnum->Current);
Console::WriteLine( "Required: {0}", myServiceDescriptionFormatExtension->Required );
}
myServiceDescription->Write( "ServiceDescription_Extensions_Output_cs.wsdl" );
myServiceDescription->RetrievalUrl = "http://www.contoso.com/";
Console::WriteLine( "Retrieval URL is: {0}", myServiceDescription->RetrievalUrl );
ServiceDescription myServiceDescription = new ServiceDescription();
myServiceDescription =
ServiceDescription.Read("ServiceDescription_Extensions_Input_cs.wsdl");
Console.WriteLine(
myServiceDescription.Bindings[1].Extensions[0].ToString());
SoapBinding mySoapBinding = new SoapBinding();
mySoapBinding.Required = true;
SoapBinding mySoapBinding1 = new SoapBinding();
mySoapBinding1.Required = false;
myServiceDescription.Extensions.Add(mySoapBinding);
myServiceDescription.Extensions.Add(mySoapBinding1);
foreach(ServiceDescriptionFormatExtension
myServiceDescriptionFormatExtension
in myServiceDescription.Extensions)
{
Console.WriteLine("Required: " +
myServiceDescriptionFormatExtension.Required);
}
myServiceDescription.Write(
"ServiceDescription_Extensions_Output_cs.wsdl");
myServiceDescription.RetrievalUrl = "http://www.contoso.com/";
Console.WriteLine("Retrieval URL is: " +
myServiceDescription.RetrievalUrl);
Dim myServiceDescription As New ServiceDescription()
myServiceDescription = _
ServiceDescription.Read("ServiceDescription_Extensions_Input_vb.wsdl")
Console.WriteLine( _
myServiceDescription.Bindings(1).Extensions(0).ToString())
Dim mySoapBinding As New SoapBinding()
mySoapBinding.Required = True
Dim mySoapBinding1 As New SoapBinding()
mySoapBinding1.Required = False
myServiceDescription.Extensions.Add(mySoapBinding)
myServiceDescription.Extensions.Add(mySoapBinding1)
Dim myServiceDescriptionFormatExtension As _
ServiceDescriptionFormatExtension
For Each myServiceDescriptionFormatExtension _
In myServiceDescription.Extensions
Console.WriteLine("Required: " & _
myServiceDescriptionFormatExtension.Required.ToString())
Next myServiceDescriptionFormatExtension
myServiceDescription.Write("ServiceDescription_Extensions_Output_vb.wsdl")
myServiceDescription.RetrievalUrl = "http://www.contoso.com/"
Console.WriteLine("Retrieval URL is: " & _
myServiceDescription.RetrievalUrl)
Şunlara uygulanır
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.