ServiceDescription.RetrievalUrl プロパティ
アセンブリ: System.Web.Services (system.web.services.dll 内)

Dim instance As ServiceDescription Dim value As String value = instance.RetrievalUrl instance.RetrievalUrl = value
/** @property */ public String get_RetrievalUrl () /** @property */ public void set_RetrievalUrl (String value)
XML Web サービスの URL。既定値は空の文字列 ("") です。

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)
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);
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_jsl.wsdl"); Console.WriteLine(myServiceDescription.get_Bindings().get_Item(1). get_Extensions().get_Item(0).ToString()); SoapBinding mySoapBinding = new SoapBinding(); mySoapBinding.set_Required(true); SoapBinding mySoapBinding1 = new SoapBinding(); mySoapBinding1.set_Required(false); myServiceDescription.get_Extensions().Add(mySoapBinding); myServiceDescription.get_Extensions().Add(mySoapBinding1); for (int iCtr = 0; iCtr < myServiceDescription.get_Extensions(). get_Count(); iCtr++) { ServiceDescriptionFormatExtension myServiceDescriptionFormatExtension = (ServiceDescriptionFormatExtension)myServiceDescription. get_Extensions().get_Item(iCtr); Console.WriteLine("Required: " + System.Convert.ToString(myServiceDescriptionFormatExtension. get_Required())); } myServiceDescription.Write( "ServiceDescription_Extensions_Output_jsl.wsdl"); myServiceDescription.set_RetrievalUrl("http://www.contoso.com/"); Console.WriteLine(("Retrieval URL is: " + myServiceDescription.get_RetrievalUrl()));

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- ServiceDescription.RetrievalUrl プロパティのページへのリンク