Skip to main content

Authenticate

Assembly: ServiceStack.Client.dll
View Source
Declaration
[Tag("auth")]
[Api("Sign In")]
[DataContract]
public class Authenticate : IPost, IVerb, IReturn<AuthenticateResponse>, IReturn, IMeta

Properties

provider

View Source
Declaration
[Description("AuthProvider, e.g. credentials")]
[DataMember(Order = 1)]
public string provider { get; set; }

State

View Source
Declaration
[DataMember(Order = 2)]
public string State { get; set; }

oauth_token

View Source
Declaration
[DataMember(Order = 3)]
public string oauth_token { get; set; }

oauth_verifier

View Source
Declaration
[DataMember(Order = 4)]
public string oauth_verifier { get; set; }

UserName

View Source
Declaration
[DataMember(Order = 5)]
public string UserName { get; set; }

Password

View Source
Declaration
[DataMember(Order = 6)]
public string Password { get; set; }

RememberMe

View Source
Declaration
[DataMember(Order = 7)]
public bool? RememberMe { get; set; }

ErrorView

View Source
Declaration
[DataMember(Order = 9)]
public string ErrorView { get; set; }

nonce

View Source
Declaration
[DataMember(Order = 10)]
public string nonce { get; set; }

uri

View Source
Declaration
[DataMember(Order = 11)]
public string uri { get; set; }

response

View Source
Declaration
[DataMember(Order = 12)]
public string response { get; set; }

qop

View Source
Declaration
[DataMember(Order = 13)]
public string qop { get; set; }

nc

View Source
Declaration
[DataMember(Order = 14)]
public string nc { get; set; }

cnonce

View Source
Declaration
[DataMember(Order = 15)]
public string cnonce { get; set; }

AccessToken

View Source
Declaration
[DataMember(Order = 17)]
public string AccessToken { get; set; }

AccessTokenSecret

View Source
Declaration
[DataMember(Order = 18)]
public string AccessTokenSecret { get; set; }

scope

View Source
Declaration
[DataMember(Order = 19)]
public string scope { get; set; }

Meta

View Source
Declaration
[DataMember(Order = 20)]
public Dictionary<string, string> Meta { get; set; }

Implements