Прочетете на английски Редактиране

Споделяне чрез


ServiceDescription.Imports Property

Definition

Gets the collection of Import elements contained in the ServiceDescription.

C#
public System.Web.Services.Description.ImportCollection Imports { get; }

Property Value

A collection of import elements contained in the service description.

Examples

C#
ServiceDescription myServiceDescription = new ServiceDescription();
myServiceDescription =
   ServiceDescription.Read("ServiceDescription_Imports_Input_CS.wsdl");
ImportCollection myImportCollection = myServiceDescription.Imports;

// Create an Import.
Import myImport = new Import();
myImport.Namespace = myServiceDescription.TargetNamespace;

// Set the location for the Import.
myImport.Location = "http://www.contoso.com/";
myImportCollection.Add(myImport);
myServiceDescription.Write("ServiceDescription_Imports_Output_CS.wsdl");
myImportCollection.Clear();
myServiceDescription =
   ServiceDescription.Read("ServiceDescription_Imports_Output_CS.wsdl");
myImportCollection = myServiceDescription.Imports;
Console.WriteLine(
   "The Import elements added to the ImportCollection are: ");
for(int i = 0; i < myImportCollection.Count; i++)
{
   Console.WriteLine((i+1) + ". " + myImportCollection[i].Location);
}

Remarks

The ImportCollection returned by this property corresponds to the list of import elements enclosed by the Web Services Description Language (WSDL) definitions root element. For more information about WSDL, see the WSDL specification.

Applies to

Продукт Версии
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)