SoapQName Constructors

Definition

Initializes a new instance of the SoapQName class.

Overloads

SoapQName()

Initializes a new instance of the SoapQName class.

SoapQName(String)

Initializes a new instance of the SoapQName class with the local part of a qualified name.

SoapQName(String, String)

Initializes a new instance of the SoapQName class with the namespace alias and the local part of a qualified name.

SoapQName(String, String, String)

Initializes a new instance of the SoapQName class with the namespace alias, the local part of a qualified name, and the namespace that is referenced by the alias.

SoapQName()

Initializes a new instance of the SoapQName class.

public SoapQName();

Examples

The following code example shows how to use this constructor.

// Create a SoapQName object.
SoapQName qName = new SoapQName();
Console.WriteLine(
    "The value of the SoapQName object is \"{0}\".",
    qName.ToString());

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

SoapQName(String)

Initializes a new instance of the SoapQName class with the local part of a qualified name.

public SoapQName(string value);

Parameters

value
String

A String that contains the local part of a qualified name.

Examples

The following code example shows how to use this constructor.

// Create a SoapQName object.
string name = "SomeName";
SoapQName qName = new SoapQName(name);
Console.WriteLine(
    "The value of the SoapQName object is \"{0}\".",
    qName.ToString());

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

SoapQName(String, String)

Initializes a new instance of the SoapQName class with the namespace alias and the local part of a qualified name.

public SoapQName(string key, string name);

Parameters

key
String

A String that contains the namespace alias of a qualified name.

name
String

A String that contains the local part of a qualified name.

Examples

The following code example shows how to use this constructor.

// Create a SoapQName object.
string key = "tns";
string name = "SomeName";
SoapQName qName = new SoapQName(key, name);
Console.WriteLine(
    "The value of the SoapQName object is \"{0}\".",
    qName.ToString());

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

SoapQName(String, String, String)

Initializes a new instance of the SoapQName class with the namespace alias, the local part of a qualified name, and the namespace that is referenced by the alias.

public SoapQName(string key, string name, string namespaceValue);

Parameters

key
String

A String that contains the namespace alias of a qualified name.

name
String

A String that contains the local part of a qualified name.

namespaceValue
String

A String that contains the namespace that is referenced by key.

Examples

The following code example shows how to use this constructor.

// Create a SoapQName object.
string key = "tns";
string name = "SomeName";
string namespaceValue = "http://example.org";
SoapQName qName = new SoapQName(key, name, namespaceValue);
Console.WriteLine(
    "The value of the SoapQName object is \"{0}\".",
    qName.ToString());

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1