C# Class RestSharp.NtlmAuthenticator

Tries to Authenticate with the credentials of the currently logged in user
Inheritance: IAuthenticator
Show file Open project: nicwise/RestSharp

Public Methods

Method Description
Authenticate ( IRestClient client, IRestRequest request ) : void
NtlmAuthenticator ( ) : System

Authenticate with the credentials of the currently logged in user

NtlmAuthenticator ( ICredentials credentials ) : System

Authenticate by impersonation, using an existing ICredentials instance

NtlmAuthenticator ( string username, string password ) : System

Authenticate by impersonation

Method Details

Authenticate() public method

public Authenticate ( IRestClient client, IRestRequest request ) : void
client IRestClient
request IRestRequest
return void

NtlmAuthenticator() public method

Authenticate with the credentials of the currently logged in user
public NtlmAuthenticator ( ) : System
return System

NtlmAuthenticator() public method

Authenticate by impersonation, using an existing ICredentials instance
public NtlmAuthenticator ( ICredentials credentials ) : System
credentials ICredentials
return System

NtlmAuthenticator() public method

Authenticate by impersonation
public NtlmAuthenticator ( string username, string password ) : System
username string
password string
return System