Click or drag to resize

ILicensingProviderAuthenticateId Method

Authenticates a licensing account user Id and password.

Namespace: RCS.Carbon.Licensing.Shared
Assembly: RCS.Carbon.Licensing.Shared (in RCS.Carbon.Licensing.Shared.dll) Version: 9.1.14
Syntax
C#
Task<LicenceFull> AuthenticateId(
	string userId,
	string password,
	bool skipCache = false
)

Parameters

userId  String
The licensing account Id is typically a key in a licensing database that identifies an account. The Id may be a set of arbitrary characters whose format is chosen by the licensing system administrator. Providers can optionally have different behaviour for a login using an Id versus a login using a name. The user Id 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.
Exceptions
ExceptionCondition
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:

KeyValue
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