ServiceDescription.RetrievalUrl Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the URL of the XML Web service to which the ServiceDescription instance applies.
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
Property Value
The URL of the XML Web service. The default value is an empty string ("").
Examples
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)
Applies to
Spolupráca s nami v službe GitHub
Zdroj tohto obsahu nájdete v službe GitHub, kde môžete vytvárať a skúmať problémy a žiadosti o prijatie zmien. Ďalšie informácie nájdete v našom sprievodcovi prispievateľom.