Table of Contents

Class Link

Namespace
Playnite.SDK.Models
Assembly
Playnite.SDK.dll

Represents web link.

public class Link : ObservableObject, INotifyPropertyChanged, IEquatable<Link>
Inheritance
Link
Implements
Inherited Members

Constructors

Creates new instance of Link.

public Link()

Creates new instance of Link with specific values.

public Link(string name, string url)

Parameters

name string

Link name.

url string

Link URL.

Properties

Gets or sets name of the link.

public string Name { get; set; }

Property Value

string

Gets or sets web based URL.

public string Url { get; set; }

Property Value

string

Methods

Indicates whether the current object is equal to another object of the same type.

public bool Equals(Link other)

Parameters

other Link

An object to compare with this object.

Returns

bool

true if the current object is equal to the other parameter; otherwise, false.

public Link GetCopy()

Returns

Link