Show / Hide Table of Contents

Class GremlinServer

Represents a Gremlin Server.

Inheritance
System.Object
GremlinServer
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
Assembly:Gremlin.Net.dll
Syntax
public class GremlinServer

Constructors

| Improve this Doc View Source

GremlinServer(String, Int32, Boolean, String, String)

Initializes a new instance of the GremlinServer class with the specified connection parameters.

Declaration
public GremlinServer(string hostname, int port = 8182, bool enableSsl = false, string username = null, string password = null)
Parameters
Type Name Description
System.String hostname

The hostname of the server.

System.Int32 port

The port on which Gremlin Server can be reached.

System.Boolean enableSsl

Specifies whether SSL should be enabled.

System.String username

The username to submit on requests that require authentication.

System.String password

The password to submit on requests that require authentication.

Properties

| Improve this Doc View Source

Password

Gets the password to submit on requests that require authentication.

Declaration
public string Password { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Uri

Gets the URI of the Gremlin Server.

Declaration
public Uri Uri { get; }
Property Value
Type Description
System.Uri

The WebSocket System.Uri that the Gremlin Server responds to.

| Improve this Doc View Source

Username

Gets the username to submit on requests that require authentication.

Declaration
public string Username { get; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Copyright © 2015-2017 Microsoft
Generated by DocFX