Table of Contents

Class AddinKey

Namespace
Dynamicweb.Marketplace
Assembly
Dynamicweb.Marketplace.dll
public sealed class AddinKey : IEquatable<AddinKey>
Inheritance
AddinKey
Implements
Inherited Members

Constructors

AddinKey(string?, string?, string?, string?, string?)

public AddinKey(string? package, string? extension, string? installedVersion, string? latestVersion, string? addinProvider)

Parameters

package string
extension string
installedVersion string
latestVersion string
addinProvider string

Properties

AddinProvider

public string? AddinProvider { get; }

Property Value

string

Extension

public string? Extension { get; }

Property Value

string

InstalledVersion

public string? InstalledVersion { get; }

Property Value

string

LatestVersion

public string? LatestVersion { get; }

Property Value

string

Package

public string? Package { get; }

Property Value

string

Methods

Equals(AddinKey?)

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

public bool Equals(AddinKey? other)

Parameters

other AddinKey

An object to compare with this object.

Returns

bool

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

Equals(object?)

Determines whether the specified object is equal to the current object.

public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

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

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

Parse(string?)

public static AddinKey? Parse(string? key)

Parameters

key string

Returns

AddinKey

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.

To top