VSNDK.DebugEngine.AD7Port.GetPortRequest C# (CSharp) Method

GetPortRequest() public method

Returns the request used to create a port. (http://msdn.microsoft.com/en-us/library/bb145127.aspx)
public GetPortRequest ( IDebugPortRequest2 &ppRequest ) : int
ppRequest IDebugPortRequest2 Returns an IDebugPortRequest2 object representing the request that was used to create the port.
return int
        public int GetPortRequest(out IDebugPortRequest2 ppRequest)
        {
            ppRequest = m_request;
            return VSConstants.S_OK;
        }