VSNDK.DebugEngine.AD7ErrorBreakpointResolution.IDebugErrorBreakpointResolution2 C# (CSharp) Method

IDebugErrorBreakpointResolution2() private method

Gets the breakpoint error resolution information. Not implemented. (http://msdn.microsoft.com/en-us/library/bb161960.aspx)
private IDebugErrorBreakpointResolution2 ( enum_BPERESI_FIELDS dwFields, BP_ERROR_RESOLUTION_INFO pErrorResolutionInfo ) : int
dwFields enum_BPERESI_FIELDS A combination of flags that determine which fields of pErrorResolutionInfo are to be filled out.
pErrorResolutionInfo BP_ERROR_RESOLUTION_INFO The BP_ERROR_RESOLUTION_INFO structure that is filled in with the description of the /// breakpoint resolution.
return int
        int IDebugErrorBreakpointResolution2.GetResolutionInfo(enum_BPERESI_FIELDS dwFields, BP_ERROR_RESOLUTION_INFO[] pErrorResolutionInfo)
        {
            if (((uint)dwFields & (uint)enum_BPERESI_FIELDS.BPERESI_BPRESLOCATION) != 0) { }
            if (((uint)dwFields & (uint)enum_BPERESI_FIELDS.BPERESI_PROGRAM) != 0) { }
            if (((uint)dwFields & (uint)enum_BPERESI_FIELDS.BPERESI_THREAD) != 0) { }
            if (((uint)dwFields & (uint)enum_BPERESI_FIELDS.BPERESI_MESSAGE) != 0) { }
            if (((uint)dwFields & (uint)enum_BPERESI_FIELDS.BPERESI_TYPE) != 0) { }

            throw new Exception("The method or operation is not implemented.");
        }

Same methods

AD7ErrorBreakpointResolution::IDebugErrorBreakpointResolution2 ( enum_BP_TYPE pBPType ) : int
AD7ErrorBreakpointResolution