Initializes a new instance of the UsernameCredentials class.

Namespace:  FileNet.Api.Authentication
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Public Sub New ( _
	uname As String, _
	pwd As String _
)
C#
public UsernameCredentials(
	string uname,
	string pwd
)
Visual C++
public:
UsernameCredentials(
	String^ uname, 
	String^ pwd
)
JavaScript
FileNet.Api.Authentication.UsernameCredentials = function(uname, pwd);

Parameters

uname
Type: System..::.String
A String representing the user name portion of the security credentials.
pwd
Type: System..::.String
A String representing the plaintext password portion of the security credentials.

ToggleSee Also