<PackageReference Include="Relativity.Server.Utility.SDK" Version="14.2.7" />

Config

public class Config : IConfig
Provides access to the kCura.Notification configuration values of this application.
public static Config Instance { get; }

Gets the singleton instance of the configuration class.

public string ApplicationName { get; set; }

Gets or sets the name of this application. Wraps kCura.Config.Config.ApplicationName.

public string AuthenticationEmailFrom { get; }

Gets the AuthenticationEmailFrom configuration value.

public string EmailFrom { get; }

Gets the EmailFrom configuration value.

public string EmailTo { get; }

Gets the EmailTo configuration value.

public string EnvironmentName { get; }

Gets the name of this environment.

public string SMTPPassword { get; }

Gets the SMTPPassword configuration value.

public int SMTPPort { get; }

Gets the SMTPPort configuration value.

public string SMTPServer { get; }

Gets the SMTPServer configuration value.

public bool SMTPSSLisRequired { get; }

Gets a value specifying whether or not SSL is used for this email.

public string SMTPUserName { get; }

Gets the SMTPUserName configuration value.

public Config(IDictionary configDictionary)

Constructs a new configuration object that pulls its configuration values from the provided dictionary.