|
|
|
@ -319,7 +319,9 @@ namespace WebSocketSharp.Server
|
|
|
|
/// </exception>
|
|
|
|
/// </exception>
|
|
|
|
public string Protocol {
|
|
|
|
public string Protocol {
|
|
|
|
get {
|
|
|
|
get {
|
|
|
|
return _protocol ?? String.Empty;
|
|
|
|
return _websocket != null
|
|
|
|
|
|
|
|
? _websocket.Protocol
|
|
|
|
|
|
|
|
: (_protocol ?? String.Empty);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
set {
|
|
|
|
set {
|
|
|
|
|