EndpointAddressAugust2004.FromEndpointAddress(EndpointAddress) 方法

定義

使用指定的端點位址,初始化 EndpointAddress10 類別的新執行個體。

public:
 static System::ServiceModel::EndpointAddressAugust2004 ^ FromEndpointAddress(System::ServiceModel::EndpointAddress ^ address);
public static System.ServiceModel.EndpointAddressAugust2004 FromEndpointAddress (System.ServiceModel.EndpointAddress address);
static member FromEndpointAddress : System.ServiceModel.EndpointAddress -> System.ServiceModel.EndpointAddressAugust2004
Public Shared Function FromEndpointAddress (address As EndpointAddress) As EndpointAddressAugust2004

參數

address
EndpointAddress

用來初始化這個類別之執行個體的 EndpointAddress

傳回

包含指定端點位址的 EndpointAddressAugust2004 類別。

範例

// Create an EndpointAddress with a specified address.
EndpointAddress epa1 = new EndpointAddress("http://localhost/ServiceModelSamples");
Console.WriteLine("The URI of the EndpointAddress is {0}:", epa1.Uri);
Console.WriteLine();

//Initialize an EndpointAddressAugust2004 from the endpointAddress.
EndpointAddressAugust2004 epaA4 = EndpointAddressAugust2004.FromEndpointAddress(epa1);

//Serialize and then deserializde the EndpointAugust2004 type.

//Convert the EndpointAugust2004 back into an EndpointAddress.
EndpointAddress epa2 = epaA4.ToEndpointAddress();

Console.WriteLine("The URI of the EndpointAddress is still {0}:", epa2.Uri);
Console.WriteLine();
' Create an EndpointAddress with a specified address.
Dim epa1 As New EndpointAddress("http://localhost/ServiceModelSamples")
Console.WriteLine("The URI of the EndpointAddress is {0}:", epa1.Uri)
Console.WriteLine()

'Initialize an EndpointAddressAugust2004 from the endpointAddress.
Dim epaA4 As EndpointAddressAugust2004 = EndpointAddressAugust2004.FromEndpointAddress(epa1)

'Serialize and then deserializde the EndpointAugust2004 type.

'Convert the EndpointAugust2004 back into an EndpointAddress.
Dim epa2 As EndpointAddress = epaA4.ToEndpointAddress()

Console.WriteLine("The URI of the EndpointAddress is still {0}:", epa2.Uri)
Console.WriteLine()

備註

EndpointAddress 與特定版本的 WS-Addressing 規格沒有密切的關係,或繫結至特定 Wire 格式。

適用於