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

GetENCUpdate() public method

This method gets the Edit and Continue (ENC) update for this program. A custom debug engine always returns E_NOTIMPL
public GetENCUpdate ( object &update ) : int
update object Returns an internal interface that can be used to update this program.
return int
        public int GetENCUpdate(out object update)
        {
            // The VSNDK debug engine does not participate in managed edit & continue.
            update = null;
            return VSConstants.S_OK;
        }