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