WindowsUserNameSecurityTokenAuthenticator.ValidateUserNamePasswordCore Method

Definition

Authenticates the specified user name and password and returns the set of authorization policies for UserNameSecurityToken security tokens.

protected:
 override System::Collections::ObjectModel::ReadOnlyCollection<System::IdentityModel::Policy::IAuthorizationPolicy ^> ^ ValidateUserNamePasswordCore(System::String ^ userName, System::String ^ password);
protected override System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.Policy.IAuthorizationPolicy> ValidateUserNamePasswordCore (string userName, string password);
override this.ValidateUserNamePasswordCore : string * string -> System.Collections.ObjectModel.ReadOnlyCollection<System.IdentityModel.Policy.IAuthorizationPolicy>
Protected Overrides Function ValidateUserNamePasswordCore (userName As String, password As String) As ReadOnlyCollection(Of IAuthorizationPolicy)

Parameters

userName
String

The user name associated with the security token.

password
String

The password associated with the security token.

Returns

A ReadOnlyCollection<T> of type IAuthorizationPolicy that contains the set of authorization policies in effect for this application.

Exceptions

userName contains more than one backslash (\) character.

Remarks

The userName parameter must be in one of the following formats: domain\username or username. If the userName parameter is in the domain\username format, then there must be only one backslash (\) character separating the user name and domain.

Applies to