Relativity.DataExchange.ValidatedNotNullAttribute
This class informs FxCop that the argument passed in, is checked for null. This means we do not need to disable warnings manually everywhere.
namespace Relativity.DataExchange
{
public sealed class ValidatedNotNullAttribute : Attribute
{
public ValidatedNotNullAttribute();
}
}