Click or drag to resize

LicensingClientIdAuthenticateText Method

Authenticates user Id and password credentials and returns the response as plain text lines. This method works identically to IdAuthenticate(String, String) but instead of returning a strongly-typed AuthenticateResponse object, it returns the object serialized as plain text lines. This method is intended for use by clients that need compatibility with direct C++ REST calls to IdAuthenticate.

Namespace: RCS.Licensing.Stdlib
Assembly: RCS.Licensing.Stdlib (in RCS.Licensing.Stdlib.dll) Version: 8.0.0+6a10b18a78f605fc5a365a56d079277e103ee6d9
Syntax
C#
public Task<string> IdAuthenticateText(
	string id,
	string password
)

Parameters

id  String
User Id credential.
password  String
Password credential.

Return Value

TaskString
A AuthenticateResponse serialized as plain text lines.
See Also