ServiceDescription.Endpoints Proprietà

Definizione

Ottiene la raccolta di endpoint dalla descrizione del servizio.

public:
 property System::ServiceModel::Description::ServiceEndpointCollection ^ Endpoints { System::ServiceModel::Description::ServiceEndpointCollection ^ get(); };
public System.ServiceModel.Description.ServiceEndpointCollection Endpoints { get; }
member this.Endpoints : System.ServiceModel.Description.ServiceEndpointCollection
Public ReadOnly Property Endpoints As ServiceEndpointCollection

Valore della proprietà

La classe ServiceEndpointCollection che contiene gli endpoint definiti per il servizio.

Esempio

// Iterate through the endpoints contained in the ServiceDescription
ServiceEndpointCollection sec = svcDesc.Endpoints;
foreach (ServiceEndpoint se in sec)
{
    Console.WriteLine("Endpoint:");
    Console.WriteLine("\tAddress: {0}", se.Address.ToString());
    Console.WriteLine("\tBinding: {0}", se.Binding.ToString());
    Console.WriteLine("\tContract: {0}", se.Contract.ToString());
    KeyedByTypeCollection<IEndpointBehavior> behaviors = se.Behaviors;
    foreach (IEndpointBehavior behavior in behaviors)
    {
        Console.WriteLine("Behavior: {0}", behavior.ToString());
    }
}
' Iterate through the endpoints contained in the ServiceDescription
Dim sec As ServiceEndpointCollection = svcDesc.Endpoints
For Each se As ServiceEndpoint In sec
    Console.WriteLine("Endpoint:")
    Console.WriteLine(Constants.vbTab & "Address: {0}", se.Address.ToString())
    Console.WriteLine(Constants.vbTab & "Binding: {0}", se.Binding.ToString())
    Console.WriteLine(Constants.vbTab & "Contract: {0}", se.Contract.ToString())
    Dim behaviors As KeyedByTypeCollection(Of IEndpointBehavior) = se.Behaviors
    For Each behavior As IEndpointBehavior In behaviors
        Console.WriteLine("Behavior: {0}", CType(behavior, Object).ToString())
    Next behavior
Next se

Commenti

Tutti gli endpoint nella classe ServiceEndpointCollection restituiti da questo metodo contengono le informazioni relative all'indirizzo, all'associazione, al contratto e al comportamento necessarie per comunicare con il servizio. Per accedere a queste informazioni, è necessario recuperare ServiceEndpoint dalla raccolta mediante il metodo Find che utilizza i criteri di ricerca rilevanti. Le proprietà di ServiceEndpoint potranno quindi essere utilizzate per accedere alle informazioni. Ad esempio, è possibile accedere a ContractDescription utilizzando la proprietà Contract.

Esportare i metadati relativi a un endpoint del servizio passando ServiceEndpoint come parametro a ExportEndpoint(ServiceEndpoint).

Si applica a