//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.IdentityModel.Metadata
{
using System.Globalization;
///
/// Defines a localized name.
///
public class LocalizedName : LocalizedEntry
{
string name;
///
/// Empty constructor.
///
public LocalizedName()
: this(null, null)
{
}
///
/// Constructs a localized name with the input and .
///
/// The name for this instance.
/// The defining the language for this instance.
public LocalizedName(string name, CultureInfo language)
: base(language)
{
this.name = name;
}
///
/// Gets or sets the name.
///
public string Name
{
get { return this.name; }
set { this.name = value; }
}
}
}