NullAuthTokenProvider
This class represents the authentication provider for not agent based scenarios.
namespace Relativity.DataExchange
{
internal class NullAuthTokenProvider
{
public string GenerateToken()
{
return string.Empty;
}
}
}