AddressHeader.CreateAddressHeader Method (String, String, Object, XmlObjectSerializer)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Creates a new instance of the AddressHeader class with a specified name and namespace that uses a specified formatter to serialize the information item from a specified object.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
'Declaration Public Shared Function CreateAddressHeader ( _ name As String, _ ns As String, _ value As Object, _ serializer As XmlObjectSerializer _ ) As AddressHeader
Parameters
- name
- Type: System.String
The name of the address header.
- ns
- Type: System.String
The namespace of the address header.
- value
- Type: System.Object
The information item for the address header.
- serializer
- Type: System.Runtime.Serialization.XmlObjectSerializer
The XmlObjectSerializer used to serialize the specified object in the value parameter.
Return Value
Type: System.ServiceModel.Channels.AddressHeaderThe AddressHeader with the specified name and ns that contains the information item specified by value.
| Exception | Condition |
|---|---|
| ArgumentNullException | name or serializer is Nothing or name.Length == 0. |
The following example shows how to create an address header using this method.
'Create address headers with XmlObjectSerializer specified Dim serializer As XmlObjectSerializer = New DataContractSerializer(GetType(Integer)) Dim addressHeaderWithObjSer As AddressHeader = AddressHeader.CreateAddressHeader("MyServiceName", "http://localhost:8000/service", 1, serializer) Dim value As Integer = addressHeaderWithObjSer.GetValue(Of Integer)()
Show: