Click or drag to resize
DseAuthProvider Class
AuthProvider which supplies authenticator instances for clients to connect to DSE clusters secured with Kerberos. See KerberosAuthenticator for how to configure client side Kerberos options. To connect to clusters using internal authentication, use the standard method for setting credentials. eg:
 Cluster cluster = Cluster.builder()
             .addContactPoint(hostname) .withCredentials("username", "password") .build();
             
Inheritance Hierarchy
SystemObject
  CassandraDseAuthProvider

Namespace: Cassandra
Assembly: Cassandra (in Cassandra.dll) Version: 3.2.0
Syntax
C#
public class DseAuthProvider : IAuthProvider

The DseAuthProvider type exposes the following members.

Constructors
  NameDescription
Public methodDseAuthProvider
Initializes a new instance of the DseAuthProvider class
Public methodDseAuthProvider(IDseCredentialsResolver)
Initializes a new instance of the DseAuthProvider class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodNewAuthenticator
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also