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

CanDetach() public method

Determines if a debug engine (DE) can detach from the program. (http://msdn.microsoft.com/en-us/library/bb161967.aspx) Not implemented because this class is not used by the debug engine. Read the description of this class at the top.
public CanDetach ( ) : int
return int
        public int CanDetach()
        {
            // The VSNDK debug engine always supports detach
            return VSConstants.S_OK;
        }