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
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
Secret
A secret for the dashboard client. If present, MUST be a non-empty string.
[JsonProperty("secret")]
public string Secret { get; set; }
Property Value
Methods
Equals(DashboardClient)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(DashboardClient other)
Parameters
other
DashboardClientAn object to compare with this object.
Returns
Equals(object)
Determines whether the specified object is equal to the current object.
public override bool Equals(object obj)
Parameters
obj
objectThe object to compare with the current object.
Returns
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.