Table of Contents

Class DashboardClient

Namespace
OpenServiceBroker.Catalogs
Assembly
OpenServiceBroker.Model.dll

Contains the data necessary to activate the Dashboard SSO feature for this service.

public class DashboardClient : IEquatable<DashboardClient>
Inheritance
DashboardClient
Implements
Inherited Members
Extension Methods

Properties

Id

The id of the OAuth client that the dashboard will use. If present, MUST be a non-empty string.

[JsonProperty("id")]
public string Id { get; set; }

Property Value

string

RedirectUri

A URI for the service dashboard. Validated by the OAuth token server when the dashboard requests a token.

[JsonProperty("redirect_uri")]
public Uri RedirectUri { get; set; }

Property Value

Uri

Secret

A secret for the dashboard client. If present, MUST be a non-empty string.

[JsonProperty("secret")]
public string Secret { get; set; }

Property Value

string

Methods

Equals(DashboardClient)

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

public bool Equals(DashboardClient other)

Parameters

other DashboardClient

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.