Removed the IsMoved property

This commit is contained in:
sta 2014-12-13 12:21:10 +09:00
parent 0e5a35edf7
commit 3cc62a3590

View File

@ -86,12 +86,6 @@ namespace WebSocketSharp
}
}
public bool IsMoved {
get {
return _code == "301";
}
}
public bool IsProxyAuthenticationRequired {
get {
return _code == "407";
@ -100,7 +94,7 @@ namespace WebSocketSharp
public bool IsRedirect {
get {
return _code == "302";
return _code == "301" || _code == "302";
}
}