<PackageReference Include="Relativity.Server.Transfer.SDK" Version="7.7.0" />

FileShareMemoryCacheKeys

using Relativity.Transfer.Resources; using System; namespace Relativity.Transfer.FileShare { internal static class FileShareMemoryCacheKeys { private const string FileShareConnectionInfoCacheId = "6E855C12-14BB-479B-84C8-62CC1BC460C7"; public static string CreateFileShareConnectionInfoKey(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(); } } }