Click or drag to resize

LicensingClientNameAuthenticateText Method

Authenticates user Name and password credentials and returns the response as plain text lines. This method works identically to NameAuthenticate(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 NameAuthenticate.

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

Parameters

name  String
User Name credential.
password  String
Password credential.

Return Value

TaskString
A AuthenticateResponse serialized as plain text lines.
See Also