AddressHeader.Name Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
When implemented, gets the name of the address header.
Namespace: System.ServiceModel.Channels
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Name As String
public abstract string Name { get; }
Property Value
Type: System.String
The name of the address header.
Examples
The following example shows how to access this property.
' Name property
Dim addressHeaderWithName As AddressHeader = AddressHeader.CreateAddressHeader("MyServiceName", "https://localhost:8000/service",1)
Dim addressHeaderName As String = addressHeaderWithName.Name
// Name property
AddressHeader addressHeaderWithName = AddressHeader.CreateAddressHeader("MyServiceName", "https://localhost:8000/service",1);
string addressHeaderName = addressHeaderWithName.Name;
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0
XNA Framework
Supported in: Windows Phone OS 7.0
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.