Determines whether the the user is a valid user (i.e. has a valid local or domain account).

Namespace:  GrassValley.Mseries.AppServer
Assembly:  GrassValley.Mseries.AppServer (in GrassValley.Mseries.AppServer.dll) Version: 1.0.0.0

Syntax

C#
public bool IsValidProtocolUser(
	string user,
	string password,
	string domain
)
Visual Basic (Declaration)
Public Function IsValidProtocolUser ( _
	user As String, _
	password As String, _
	domain As String _
) As Boolean
Visual C++
public:
virtual bool IsValidProtocolUser(
	String^ user, 
	String^ password, 
	String^ domain
) sealed

Parameters

user
Type: System..::.String
The user.
password
Type: System..::.String
The password.
domain
Type: System..::.String
The domain.

Return Value

true if the user is valid; otherwise, false.

Implements

IAppServer2..::.IsValidProtocolUser(String, String, String)

See Also