LocalizedName Constructors

Definition

Initializes a new instance of the LocalizedName class.

Overloads

LocalizedName()

Initializes a new instance of the LocalizedName class.

LocalizedName(String, CultureInfo)

Initializes a new instance of the LocalizedName class that has the specified name and culture (language).

LocalizedName()

Initializes a new instance of the LocalizedName class.

public:
 LocalizedName();
public LocalizedName ();
Public Sub New ()

Remarks

The Name property is initialized to null in the new instance.

Applies to

LocalizedName(String, CultureInfo)

Initializes a new instance of the LocalizedName class that has the specified name and culture (language).

public:
 LocalizedName(System::String ^ name, System::Globalization::CultureInfo ^ language);
public LocalizedName (string name, System.Globalization.CultureInfo language);
new System.IdentityModel.Metadata.LocalizedName : string * System.Globalization.CultureInfo -> System.IdentityModel.Metadata.LocalizedName
Public Sub New (name As String, language As CultureInfo)

Parameters

name
String

The name for this instance. Initializes the Name property.

language
CultureInfo

The CultureInfo that defines the language for this instance. Initializes the Language property.

Applies to