AddressHeader.Namespace Property
Microsoft Silverlight will reach end of support after October 2021. Learn more.
When implemented, gets the namespace of the address header.
Namespace: System.ServiceModel.Channels
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Syntax
'Declaration
Public MustOverride ReadOnly Property Namespace As String
public abstract string Namespace { get; }
Property Value
Type: System.String
The namespace of the address header.
Examples
The following example shows how to access this property.
'Put snippet here.
' Namespace property
Dim addressHeaderWithNS As AddressHeader = AddressHeader.CreateAddressHeader("MyServiceName", "https://localhost:8000/service",1)
Dim addressHeaderNS As String = addressHeaderWithNS.Namespace
//Put snippet here.
// Namespace property
AddressHeader addressHeaderWithNS = AddressHeader.CreateAddressHeader("MyServiceName", "https://localhost:8000/service",1);
string addressHeaderNS = addressHeaderWithNS.Namespace;
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.