ContractDescription.GetInheritedContracts Méthode

Définition

Retourne une collection de descriptions de contrats héritées par la description de contrat actuelle.

public:
 System::Collections::ObjectModel::Collection<System::ServiceModel::Description::ContractDescription ^> ^ GetInheritedContracts();
public System.Collections.ObjectModel.Collection<System.ServiceModel.Description.ContractDescription> GetInheritedContracts ();
member this.GetInheritedContracts : unit -> System.Collections.ObjectModel.Collection<System.ServiceModel.Description.ContractDescription>
Public Function GetInheritedContracts () As Collection(Of ContractDescription)

Retours

Collection<T> de type ContractDescription héritée par la description de contrat actuelle.

Exemples

Collection<ContractDescription> inheretedContracts = cd.GetInheritedContracts();
Console.WriteLine("\tInherited Contracts:");
foreach (ContractDescription contractdescription in inheretedContracts)
{
    Console.WriteLine("\t\t" + contractdescription.Name);
}
Dim inheretedContracts As Collection(Of ContractDescription) = cd.GetInheritedContracts()
Console.WriteLine(Constants.vbTab & "Inherited Contracts:")
For Each contractdescription As ContractDescription In inheretedContracts
    Console.WriteLine(Constants.vbTab + Constants.vbTab + contractdescription.Name)
Next contractdescription

S’applique à