欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Websocket-Sharp获取客户端IP地址和端口号

程序员文章站 2022-07-07 08:26:03
在OnOpen事件内,通过 ......
//onopen事件
protected override void onopen() { string ipaddress = base.sessions.sessions.first().context.userendpoint.tostring();
       string ipaddress2 = base.context.userendpoint.tostring(); websocketmain.account++; base.onopen(); }

在onopen事件内,通过

base.sessions.sessions.first().context.userendpoint.tostring();
string ipaddress2 = base.context.userendpoint.tostring();

函数以上两个函数都可以获取到客户端的ip地址及端口号