Table of Contents

Class RepositoryConnectionInfo

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

Class that holds all the required data to connect to a repository database

public class RepositoryConnectionInfo
Inheritance
RepositoryConnectionInfo
Inherited Members

Properties

DatabaseName

The name of the database

[JsonProperty("DatabaseName", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string DatabaseName { get; set; }

Property Value

string

DatabaseServer

The name of the database server

[JsonProperty("DatabaseServer", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string DatabaseServer { get; set; }

Property Value

string

Password

The password

[JsonProperty("Password", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Password { get; set; }

Property Value

string

UserId

The user id

[JsonProperty("UserId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string UserId { get; set; }

Property Value

string