本文整理汇总了C#中HttpStatusCode.GetDescription方法的典型用法代码示例。如果您正苦于以下问题:C# HttpStatusCode.GetDescription方法的具体用法?C# HttpStatusCode.GetDescription怎么用?C# HttpStatusCode.GetDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类HttpStatusCode
的用法示例。
在下文中一共展示了HttpStatusCode.GetDescription方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: HandshakeResponse
public HandshakeResponse (HttpStatusCode code)
{
_code = ((int) code).ToString ();
_reason = code.GetDescription ();
var headers = Headers;
headers ["Server"] = "websocket-sharp/1.0";
if (code == HttpStatusCode.SwitchingProtocols) {
headers ["Upgrade"] = "websocket";
headers ["Connection"] = "Upgrade";
}
}
示例2: HandshakeResponse
internal HandshakeResponse (HttpStatusCode code)
: base (HttpVersion.Version11, new NameValueCollection ())
{
_code = ((int) code).ToString ();
_reason = code.GetDescription ();
var headers = Headers;
headers["Server"] = "websocket-sharp/1.0";
if (code == HttpStatusCode.SwitchingProtocols) {
headers["Upgrade"] = "websocket";
headers["Connection"] = "Upgrade";
}
}
示例3: ResponseHandshake
public ResponseHandshake(HttpStatusCode code)
{
StatusCode = ((int)code).ToString();
Reason = code.GetDescription();
}
示例4: HttpResponse
internal HttpResponse (HttpStatusCode code)
: this (code, code.GetDescription ())
{
}
示例5: HTTPException
public HTTPException(HttpStatusCode statusCode)
: base(statusCode.GetDescription())
{
this.StatusCode = statusCode;
}
示例6: ResponseHandshake
public ResponseHandshake(HttpStatusCode code)
{
StatusCode = ((int)code).ToString();
Reason = code.GetDescription();
AddHeader("Server", "websocket-sharp/1.0");
}