WebSocketHelperBuildWsRequest 方法 |
根据额外的参数信息,创建新的websocket的请求信息
命名空间:
HslCommunication.WebSocket
程序集:
HslCommunication (在 HslCommunication.dll 中) 版本:12.1.2.0 (12.1.2.0)
语法 public static byte[] BuildWsRequest(
string ipAddress,
int port,
string url,
string extra,
bool getCarryHostAndPort
)
Public Shared Function BuildWsRequest (
ipAddress As String,
port As Integer,
url As String,
extra As String,
getCarryHostAndPort As Boolean
) As Byte()
public:
static array<unsigned char>^ BuildWsRequest(
String^ ipAddress,
int port,
String^ url,
String^ extra,
bool getCarryHostAndPort
)
static member BuildWsRequest :
ipAddress : string *
port : int *
url : string *
extra : string *
getCarryHostAndPort : bool -> byte[]
参数
- ipAddress
- 类型:SystemString
ip地址 - port
- 类型:SystemInt32
端口号 - url
- 类型:SystemString
跟在端口号后面的额外的参数信息 - extra
- 类型:SystemString
额外的参数信息 - getCarryHostAndPort
- 类型:SystemBoolean
GET命令是否携带 Host 信息。
返回值
类型:
Byte报文信息
参见