Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 144671
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T08:17:25+00:00 2026-05-11T08:17:25+00:00

What is the easiest way to get a PID that listens on a given

  • 0

What is the easiest way to get a PID that listens on a given port in C#? Basically, I want to make sure that my service is running and listens on a port I have provided it. If there is an easier way than parsing netstat output it will be great.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T08:17:25+00:00Added an answer on May 11, 2026 at 8:17 am

    from win XP SP2 onwards you can P/Invoke to GetExtendedTcpTable

    Using This person’s kind work to flesh out the signature (the PInvoke.net spec is incomplete) here is a (rough and poor at error checking) example

    using System; using System.Runtime.InteropServices;  public enum TCP_TABLE_CLASS : int {     TCP_TABLE_BASIC_LISTENER,     TCP_TABLE_BASIC_CONNECTIONS,     TCP_TABLE_BASIC_ALL,     TCP_TABLE_OWNER_PID_LISTENER,     TCP_TABLE_OWNER_PID_CONNECTIONS,     TCP_TABLE_OWNER_PID_ALL,     TCP_TABLE_OWNER_MODULE_LISTENER,     TCP_TABLE_OWNER_MODULE_CONNECTIONS,     TCP_TABLE_OWNER_MODULE_ALL }   [StructLayout(LayoutKind.Sequential)] public struct MIB_TCPROW_OWNER_PID {     public uint state;     public uint localAddr;     public byte localPort1;     public byte localPort2;     public byte localPort3;     public byte localPort4;     public uint remoteAddr;     public byte remotePort1;     public byte remotePort2;     public byte remotePort3;     public byte remotePort4;     public int owningPid;      public ushort LocalPort {         get         {             return BitConverter.ToUInt16(                 new byte[2] { localPort2, localPort1}, 0);         }     }      public ushort RemotePort     {         get         {             return BitConverter.ToUInt16(                 new byte[2] { remotePort2, remotePort1}, 0);         }     } }  [StructLayout(LayoutKind.Sequential)] public struct MIB_TCPTABLE_OWNER_PID {     public uint dwNumEntries;     MIB_TCPROW_OWNER_PID table; }  [DllImport('iphlpapi.dll', SetLastError=true)] static extern uint GetExtendedTcpTable(IntPtr pTcpTable,      ref int dwOutBufLen,      bool sort,      int ipVersion,      TCP_TABLE_CLASS tblClass,     int reserved);  public static MIB_TCPROW_OWNER_PID[] GetAllTcpConnections() {     MIB_TCPROW_OWNER_PID[] tTable;     int AF_INET = 2;    // IP_v4     int buffSize = 0;      // how much memory do we need?     uint ret = GetExtendedTcpTable(IntPtr.Zero,          ref buffSize,          true,          AF_INET,          TCP_TABLE_CLASS.TCP_TABLE_OWNER_PID_ALL,         0);             if (ret != 0 && ret != 122) // 122 insufficient buffer size         throw new Exception('bad ret on check ' + ret);     IntPtr buffTable = Marshal.AllocHGlobal(buffSize);      try     {         ret = GetExtendedTcpTable(buffTable,              ref buffSize,              true,              AF_INET,              TCP_TABLE_CLASS.TCP_TABLE_OWNER_PID_ALL,              0);         if (ret != 0)             throw new Exception('bad ret '+ ret);                  // get the number of entries in the table         MIB_TCPTABLE_OWNER_PID tab =              (MIB_TCPTABLE_OWNER_PID)Marshal.PtrToStructure(                 buffTable,                  typeof(MIB_TCPTABLE_OWNER_PID));          IntPtr rowPtr = (IntPtr)((long)buffTable +               Marshal.SizeOf(tab.dwNumEntries));         tTable = new MIB_TCPROW_OWNER_PID[tab.dwNumEntries];          for (int i = 0; i < tab.dwNumEntries; i++)         {             MIB_TCPROW_OWNER_PID tcpRow = (MIB_TCPROW_OWNER_PID)Marshal                 .PtrToStructure(rowPtr, typeof(MIB_TCPROW_OWNER_PID));             tTable[i] = tcpRow;             // next entry             rowPtr = (IntPtr)((long)rowPtr + Marshal.SizeOf(tcpRow));            }     }     finally     {         // Free the Memory         Marshal.FreeHGlobal(buffTable);     }     return tTable; } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an URL with some parameters. What is the easiest way to get
What's the easiest way to get RPC in .NET? I see that there is
What is the easiest way to get all changes that was made by a
What is the fastest/easiest way to get an OAuth provider running in Java? Specifically,
Given the string <table><tr><td>Hello World!</td></tr></table> , what is the (easiest) way to get a
I am trying to find the easiest way to get the checkboxes that are
What is the easiest way to get the title from the youtybe video ,
What's the easiest way to get the Unicode value from an NSString ? For
I'd like to know the best/easiest way to get a visual diff of a
What's the easiest way to get the URL (relative or absolute) to a Route

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.