FileShareMemoryCacheKeys
using Relativity.Transfer.Resources;
using System;
namespace Relativity.Transfer.FileShare
{
internal static class FileShareMemoryCacheKeys
{
private const string = "6E855C12-14BB-479B-84C8-62CC1BC460C7";
public static string (RelativityConnectionInfo connectionInfo)
{
if (connectionInfo == null)
throw new ArgumentNullException("connectionInfo");
if (connectionInfo.Host == (Uri)null)
throw new ArgumentException(CoreStrings.RelativityConnectionHostArgumentExceptionMessage, "connectionInfo");
return string.Format("{0}.{1}.{2}", "6E855C12-14BB-479B-84C8-62CC1BC460C7", connectionInfo.WorkspaceId, connectionInfo.Host).ToUpperInvariant();
}
}
}