Skip to content

Commit 0bcfef9

Browse files
authored
Added the Async suffix to the documentation too.
1 parent 7167a79 commit 0bcfef9

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ namespace SendSecureClient
154154

155155
### Get User Token
156156
```
157-
GetUserToken(enterpriseAccount, username, password, deviceId, deviceName, applicationType, endpoint, oneTimePassword, cancellationToken)
157+
GetUserTokenAsync(enterpriseAccount, username, password, deviceId, deviceName, applicationType, endpoint, oneTimePassword, cancellationToken)
158158
```
159159
Creates and returns an API Token for a specific user within a SendSecure enterprise account.
160160
Calling this method again with the exact same params will always return the same Token.
@@ -185,7 +185,7 @@ locale | String | The locale in which the server errors will be retur
185185

186186
### Get Enterprise Settings
187187
```
188-
EnterpriseSettings(cancellationToken)
188+
EnterpriseSettingsAsync(cancellationToken)
189189
```
190190
Returns all values/properties of the enterprise account's settings specific to SendSecure.
191191

@@ -195,7 +195,7 @@ cancellationToken | CancellationToken | A cancellation token that can be used by
195195

196196
### Get Default Security Profile
197197
```
198-
DefaultSecurityProfile(userEmail, cancellationToken)
198+
DefaultSecurityProfileAsync(userEmail, cancellationToken)
199199
```
200200
Returns the default security profile (if it has been set) for a specific user, with all its setting values/properties.
201201

@@ -206,7 +206,7 @@ cancellationToken | CancellationToken | A cancellation token that can be used by
206206

207207
### Get Security Profiles
208208
```
209-
SecurityProfiles(userEmail, cancellationToken)
209+
SecurityProfilesAsync(userEmail, cancellationToken)
210210
```
211211
Returns the list of all security profiles available to a specific user, with all their setting values/properties.
212212

@@ -217,7 +217,7 @@ cancellationToken | CancellationToken | A cancellation token that can be used by
217217

218218
### Initialize SafeBox
219219
```
220-
InitializeSafebox(safebox, cancellationToken)
220+
InitializeSafeboxAsync(safebox, cancellationToken)
221221
```
222222
Pre-creates a SafeBox on the SendSecure system and returns the updated Safebox object with the necessary system parameters filled out (GUID, public encryption key, upload URL).
223223

@@ -228,7 +228,7 @@ cancellationToken | CancellationToken | A cancellation token that can be used by
228228

229229
### Upload Attachment
230230
```
231-
UploadAttachment(safebox, attachment, cancellationToken)
231+
UploadAttachmentAsync(safebox, attachment, cancellationToken)
232232
```
233233
Uploads the specified file as an Attachment of the specified SafeBox and returns the updated Attachment object with the GUID parameter filled out.
234234

@@ -240,7 +240,7 @@ cancellationToken | CancellationToken | A cancellation token that can be used by
240240

241241
### Commit SafeBox
242242
```
243-
CommitSafebox(safebox, cancellationToken)
243+
CommitSafeboxAsync(safebox, cancellationToken)
244244
```
245245
Finalizes the creation (commit) of the SafeBox on the SendSecure system.
246246
This actually "Sends" the SafeBox with all content and contact info previously specified.
@@ -252,7 +252,7 @@ cancellationToken | CancellationToken | A cancellation token that can be used by
252252

253253
### Submit SafeBox
254254
```
255-
SubmitSafebox(safebox, cancellationToken)
255+
SubmitSafeboxAsync(safebox, cancellationToken)
256256
```
257257
This method is a high-level combo that initializes the SafeBox, uploads all attachments and commits the SafeBox.
258258

0 commit comments

Comments
 (0)