我正在尝试使用特定的子协议创建messagewebsocket。在javascript中这不是问题,但在c#中没有参数。我发现的唯一一件事是如何获得协议列表,(https://msdn.microsoft.com/en-us/library/windows/apps/windows.networking.sockets.messagewebsocketcontrol.supportedprotocols),但没有设置器。
答案 0 :(得分:2)
只需将名称添加到列表中:
var protocollist = messageWebSocket.Control.SupportedProtocols;
protocollist.Add("subprotocol");