Méthode | Description | |
---|---|---|
ClaimDeviceAsync ( String deviceId ) : Task |
Claims the specified device for the logged in user
|
|
Dispose ( ) : void |
Releases unmanaged and - optionally - managed resources mainly the underlining HttpClient
|
|
GetDevicesAsync ( ) : Task |
Get the list of devices the user has access to
|
|
LoginWithUserAsync ( String username, String password, int expiresIn = 3600 ) : Task |
Logs into ParticleCloud with the given username and password
|
|
Logout ( ) : void |
Logs the user out locally
|
|
MakeDeleteRequestAsync ( String method ) : Task |
Makes the delete request asynchronous to the particle cloud
|
|
MakeDeleteRequestWithAuthTestAsync ( String method ) : Task |
Calls MakeDeleteRequestAsync(string) and if it returns a status code of Unauthorized try s to refresh the token and makes the request again
|
|
MakeGetRequestAsync ( String method ) : Task |
Makes the get request asynchronous to the cloud api
|
|
MakeGetRequestWithAuthTestAsync ( String method ) : Task |
Calls MakeGetRequestAsync(string) and if it returns a status code of Unauthorized try s to refresh the token and makes the request again
|
|
MakePostRequestAsync ( String method ) : Task |
Makes the post request asynchronous to the particle cloud
|
|
MakePostRequestWithAuthTestAsync ( String method ) : Task |
Calls MakePostRequestAsync(string, KeyValuePair{string, string}[]) and if it returns a status code of Unauthorized try s to refresh the token and makes the request again
|
|
MakePostRequestWithoutAuthAsync ( String method ) : Task |
Makes the post request without authentication asynchronous to the particle cloud.
|
|
MakePutRequestAsync ( String method ) : Task |
Makes the put request asynchronous to the particle cloud
|
|
MakePutRequestWithAuthTestAsync ( String method ) : Task |
Calls MakePutRequestAsync(string, KeyValuePair{string, string}[]) and if it returns a status code of Unauthorized try s to refresh the token and makes the request again
|
|
ParticleCloud ( ) : Newtonsoft.Json |
Initializes a new instance of the ParticleCloud class using the default url https://api.particle.io/v1/
|
|
ParticleCloud ( |
Initializes a new instance of the ParticleCloud class.
|
|
RefreshTokenAsync ( ) : Task |
Refreshes the access token asynchronous.
|
|
RequestPasswordResetAsync ( String email ) : Task |
Requests the password be reset.
|
|
SignupWithUserAsync ( String username, String password ) : Task |
Sign up with new account credentials to Particle cloud
|
public ClaimDeviceAsync ( String deviceId ) : Task |
||
deviceId | String | The id of the new device |
Résultat | Task |
public LoginWithUserAsync ( String username, String password, int expiresIn = 3600 ) : Task |
||
username | String | The Particle account username |
password | String | The Particle account password |
expiresIn | int | How many seconds the token will be valid for. 0 means forever. Short lived tokens are better for security. |
Résultat | Task |
public MakeDeleteRequestAsync ( String method ) : Task |
||
method | String | The method. |
Résultat | Task |
public MakeDeleteRequestWithAuthTestAsync ( String method ) : Task |
||
method | String | The method to call |
Résultat | Task |
public MakeGetRequestAsync ( String method ) : Task |
||
method | String | The method to call i.e. devices |
Résultat | Task |
public MakeGetRequestWithAuthTestAsync ( String method ) : Task |
||
method | String | The method to call |
Résultat | Task |
public MakePostRequestAsync ( String method ) : Task |
||
method | String | The method to call |
Résultat | Task |
public MakePostRequestWithAuthTestAsync ( String method ) : Task |
||
method | String | The method to call |
Résultat | Task |
public MakePostRequestWithoutAuthAsync ( String method ) : Task |
||
method | String | The method. |
Résultat | Task |
public MakePutRequestAsync ( String method ) : Task |
||
method | String | The method to call |
Résultat | Task |
public MakePutRequestWithAuthTestAsync ( String method ) : Task |
||
method | String | The method to call |
Résultat | Task |
public ParticleCloud ( |
||
baseUri | The url to the particle sdk i.e. https://api.particle.io/v1/ | |
Résultat | Newtonsoft.Json |
public RequestPasswordResetAsync ( String email ) : Task |
||
String | The email. | |
Résultat | Task |
public SignupWithUserAsync ( String username, String password ) : Task |
||
username | String | Required user name, must be a valid email address |
password | String | Required password |
Résultat | Task |