NodeContext
using System;
namespace Relativity.DataTransfer.Nodes
{
public sealed class NodeContext : NodeContextBase
{
public NodeContext(string fileshareName, int artifactId, string filesharePath)
: base(fileshareName, artifactId, filesharePath)
{
if (string.IsNullOrWhiteSpace(fileshareName))
throw new ArgumentException("fileshareName");
if (string.IsNullOrWhiteSpace(filesharePath))
throw new ArgumentException("filesharePath");
}
}
}