PowerStudio.Debugger.PowerShellProcess.GetPort C# (CSharp) Method

GetPort() public method

Gets the port that the process is running on.
public GetPort ( IDebugPort2 &ppPort ) : int
ppPort IDebugPort2 Returns an IDebugPort2 object that represents the port on which the process was launched.
return int
        public override int GetPort( out IDebugPort2 ppPort )
        {
            Logger.Debug( string.Empty );
            ppPort = Port;
            return VSConstants.S_OK;
        }