C# Class Akamai.EdgeGrid.Auth.ClientCredential

Represents the client credential that is used in service requests. It contains the client token that represents the service client, the client secret that is associated with the client token used for request signing, and the access token that represents the authorizations the client has for accessing the service.
Mostra file Open project: surgeforward/AkamaiOPEN-edgegrid-C-Sharp Class Usage Examples

Public Methods

Method Description
ClientCredential ( string clientToken, string accessToken, string secret ) : System

Default Constructor

Method Details

ClientCredential() public method

Default Constructor
public ClientCredential ( string clientToken, string accessToken, string secret ) : System
clientToken string The Client Token - cannot be null or empty
accessToken string The Access Token - cannot be null or empty
secret string The client Secret - cannot be null or empty
return System