Amido.Testing.WebApi.ValidationRules.AssertContentLengthEqualsValidationRule.AssertContentLengthEqualsValidationRule C# (CSharp) Метод

AssertContentLengthEqualsValidationRule() публичный Метод

Constructs the ValidationRule.
public AssertContentLengthEqualsValidationRule ( long expectedContentLength ) : System.ComponentModel
expectedContentLength long The expected content length.
Результат System.ComponentModel
        public AssertContentLengthEqualsValidationRule(long expectedContentLength)
        {
            Contract.Requires(expectedContentLength >= 0, "The expected content length must be a positive integer.");
            this.expectedContentLength = expectedContentLength;
        }
AssertContentLengthEqualsValidationRule