Click or drag to resize

ILicensingProvider Interface

A Carbon licensing provider must implement this interface. How much they implement depends upon the needs of environment and applications using the provider. The authentication methods are almost certainly going to be needed, but other licence management methods are optional.

Namespace: RCS.Carbon.Licensing.Shared
Assembly: RCS.Carbon.Licensing.Shared (in RCS.Carbon.Licensing.Shared.dll) Version: 9.1.14
Syntax
C#
public interface ILicensingProvider

The ILicensingProvider type exposes the following members.

Properties
 NameDescription
Public propertyConfigSummary Gets a summary of the configuration values used by the provider implementation. The value is only intended for information display or to assist debugging.
Public propertyDescription Gets a longer description of the licensing provider implementation.
Public propertyName Gets a short display name of the provider implementation.
Top
Methods
 NameDescription
Public methodAuthenticateId Authenticates a licensing account user Id and password.
Public methodAuthenticateName Authenticates a licensing account user name and password.
Public methodGetFreeLicence Authenticates using the 'free' account which is also known as a 'guest' account. This account can be used for evaluation or demonstrations without the need to register a custom account. The account only has access to demonstration customers and jobs and its performance is throttled.
Public methodListTSAPIVisibleJobs Returns a list of jobs (surveys) that can be exported in TSAPI format.
Top
Events
 NameDescription
Public eventProviderLog Hosting applications can listen to this handler for logging string events from the licensing provider. It is up to the provider author to optionally implement meaningful logging. It is recommended that the event strings be in the simple efficient format X Message where X is D=Debug I=information W=Warning and E=Error.
Top
See Also