Fix due to the modified WebSocketContext.cs

This commit is contained in:
sta
2013-02-28 15:09:11 +09:00
parent 09c057efc2
commit c15ac02c9b
67 changed files with 113 additions and 19 deletions

View File

@@ -163,9 +163,9 @@ namespace WebSocketSharp.Net.WebSockets {
/// Gets the absolute path of the requested WebSocket URI.
/// </summary>
/// <value>
/// A <see cref="string"/> that contains the absolute path.
/// A <see cref="string"/> that contains the absolute path of the requested WebSocket URI.
/// </value>
public virtual string Path {
public override string Path {
get {
return RequestUri.GetAbsolutePath();
}

View File

@@ -174,9 +174,9 @@ namespace WebSocketSharp.Net.WebSockets {
/// Gets the absolute path of the requested WebSocket URI.
/// </summary>
/// <value>
/// A <see cref="string"/> that contains the absolute path.
/// A <see cref="string"/> that contains the absolute path of the requested WebSocket URI.
/// </value>
public virtual string Path {
public override string Path {
get {
return _request.RequestUri.GetAbsolutePath();
}

View File

@@ -110,6 +110,14 @@ namespace WebSocketSharp.Net.WebSockets {
/// </value>
public abstract string Origin { get; }
/// <summary>
/// Gets the absolute path of the requested WebSocket URI.
/// </summary>
/// <value>
/// A <see cref="string"/> that contains the absolute path of the requested WebSocket URI.
/// </value>
public abstract string Path { get; }
/// <summary>
/// Gets the collection of query string variables used in the WebSocket opening handshake.
/// </summary>