LocalizedUri Constructors

Definition

Initializes a new instance of the LocalizedUri class.

Overloads

LocalizedUri()

Initializes a new instance of the LocalizedUri class.

LocalizedUri(Uri, CultureInfo)

Constructs a LocalizedUri with the uri and language.

LocalizedUri()

Initializes a new instance of the LocalizedUri class.

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

Remarks

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

Applies to

LocalizedUri(Uri, CultureInfo)

Constructs a LocalizedUri with the uri and language.

public:
 LocalizedUri(Uri ^ uri, System::Globalization::CultureInfo ^ language);
public LocalizedUri (Uri uri, System.Globalization.CultureInfo language);
new System.IdentityModel.Metadata.LocalizedUri : Uri * System.Globalization.CultureInfo -> System.IdentityModel.Metadata.LocalizedUri
Public Sub New (uri As Uri, language As CultureInfo)

Parameters

uri
Uri

The URI for this instance. Initializes the Uri property.

language
CultureInfo

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

Applies to