an attempt was made to access a socket in a way forbbiden by its access permissions. why?

前端 未结 11 1252
北荒
北荒 2020-11-28 11:49
 private void StartReceivingData(string ipAddress, int iPort)
    {
        try
        {
            if (!_bContinueReciving)
            {
                //initia         


        
11条回答
  •  误落风尘
    2020-11-28 12:08

    Most likely the socket is held by some process. Use netstat -o to find which one.

提交回复
热议问题