原因短语不得包含新行字符

时间:2015-06-26 05:41:31

标签: c# sql-server database asp.net-web-api

尝试通过应用程序执行SQL Query时,我遇到了以下错误。

  

错误:原因短语不得包含换行符。

当我关闭集成安全选项时,错误消失了。

请告知为什么会出现此错误以及这背后的原因是什么?

1 个答案:

答案 0 :(得分:2)

这不是sql-server的错误。属性HttpResponseMessage.ReasonPhrase

中的问题
public string ReasonPhrase
{
    get { return reasonPhrase; }
    set
    {
        if ((value != null) && ContainsNewLineCharacter(value))
        {
            throw new FormatException("The reason phrase must not contain new-line characters.");
        }
        CheckDisposed();

        reasonPhrase = value; // It's OK to have a 'null' reason phrase
    }
}

请详细描述您的问题