Fix due to the modified WebSocketContext.cs
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
@@ -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();
|
||||
}
|
||||
|
@@ -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>
|
||||
|
Reference in New Issue
Block a user