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.
using System;
namespace Relativity.DataExchange
{
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class ValidatedNotNullAttribute : Attribute
{
}
}