ICredentialProvider.IsValidAppIdAsync(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Validates an app ID.
public System.Threading.Tasks.Task<bool> IsValidAppIdAsync (string appId);
abstract member IsValidAppIdAsync : string -> System.Threading.Tasks.Task<bool>
Public Function IsValidAppIdAsync (appId As String) As Task(Of Boolean)
Parameters
- appId
- String
The app ID to validate.
Returns
A task that represents the work queued to execute.
Remarks
If the task is successful, the result is true if appId
is valid for the controller; otherwise, false.
This method is async to enable custom implementations that may need to call out to serviced to validate the appId / password pair.