VSNDK.DebugEngine.AD7ProgramNodeAttach.GetProgramId C# (CSharp) Method

GetProgramId() public method

Gets a GUID for this program. A debug engine (DE) must return the program identifier originally passed to the IDebugProgramNodeAttach2::OnAttach or IDebugEngine2::Attach methods. This allows identification of the program across debugger components. (http://msdn.microsoft.com/en-us/library/bb145581.aspx)
public GetProgramId ( System.Guid &guidProgramId ) : int
guidProgramId System.Guid Returns the GUID for this program.
return int
        public int GetProgramId(out Guid guidProgramId)
        {
            guidProgramId = m_processGuid;
            return VSConstants.S_OK;
        }