Class AuthenticationRequestArguments
Represents parameters to pass to Gremlin Server for a AuthenticationRequestMessage.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Gremlin.Net.Messages
Assembly:Gremlin.Net.dll
Syntax
public class AuthenticationRequestArguments : RequestArguments
Constructors
| Improve this Doc View SourceAuthenticationRequestArguments(String, String)
Initializes a new instance of the AuthenticationRequestArguments class.
Declaration
public AuthenticationRequestArguments(string username, string password)
Parameters
Type | Name | Description |
---|---|---|
System.String | username | The username. |
System.String | password | The password. |
Properties
| Improve this Doc View SourceSasl
Gets or sets the response to the server authentication challenge. This value is dependent on the SASL authentication mechanism required by the server.
Declaration
[JsonProperty(PropertyName = "sasl")]
public string Sasl { get; set; }
Property Value
Type | Description |
---|---|
System.String | The response to the server authentication challenge. |