ContractDescription.GetInheritedContracts Methode

Definition

Gibt eine Auflistung von Vertragsbeschreibungen zurück, die von der aktuellen Vertragsbeschreibung geerbt werden.

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)

Gibt zurück

Der Collection<T> des Typs ContractDescription, der von der aktuellen Vertragsbeschreibung geerbt wird.

Beispiele

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

Gilt für: