|
ILicensingProviderAuthenticateName Method
|
Authenticates a licensing account user name and password.
Namespace: RCS.Carbon.Licensing.SharedAssembly: RCS.Carbon.Licensing.Shared (in RCS.Carbon.Licensing.Shared.dll) Version: 9.1.14
SyntaxTask<LicenceFull> AuthenticateName(
string userName,
string password,
bool skipCache = false
)
Parameters
- userName String
-
The licensing account user name is typically an easily memorable string composed from parts of a person's name, or it may be an email address.
The user name must be unique within a licensing system.
- password String
-
An optional password to apply security to a user account.
If the user account account has no password assigned to it then this parameter is ignored.
- skipCache Boolean (Optional)
-
Some licensing providers may use caching of login credentials to improve performance.
The provider may recognise a true value as a request to skip caching.
Return Value
TaskLicenceFull
An instance of a
LicenceFull class which contains information about the user account.
ExceptionsException | Condition |
---|
ApplicationException |
The underlying licensing system is expected to throw an ApplicationException when there is
some kind of authentication failure. The Message property is expected to contain a concise explanation
of the error. The Data collection property contains the following items:
Key | Value |
---|
Code |
A required Int32 error code which corresponds to one of the RCS.Licensing.Stdlib.LicensingResult enum values.
| Note |
An optional string message that can contain a more detailed explanation of the error.
|
|
See Also