원격지 소켓 키의 세션 연결 여부를 리턴한다.
Parameters | Type | Description |
---|---|---|
strSocketKey | STRING | 원격지 소켓 키 |
Type | Description |
---|---|
BOOL | 세션 연결 여부 |
전용 브라우저 환경에서만 동작합니다.
function btnTest_on_mouseup(objInst)
{
if (wssvr.isconnectedbykey("1234567890") == true) {
screen.alert("연결됨");
} else {
screen.alert("연결안됨");
}
}