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

GetEngineInfo() public method

Gets the name and GUID of the debug engine running this program. (http://msdn.microsoft.com/en-ca/library/bb146303.aspx)
public GetEngineInfo ( string &engineName, System.Guid &engineGuid ) : int
engineName string Returns the name of the DE running this program.
engineGuid System.Guid Returns the GUID of the DE running this program.
return int
        public int GetEngineInfo(out string engineName, out Guid engineGuid)
        {
            engineName = "VSNDK Debug Engine";
            engineGuid = m_engineGuid;

            return VSConstants.S_OK;
        }