VSNDK.DebugEngine.AD7StepCompletedEvent.GetAttributes C# (CSharp) Method

GetAttributes() public method

Gets the attributes for this debug event. (http://msdn.microsoft.com/en-us/library/bb145575.aspx)
public GetAttributes ( uint &pdwAttrib ) : int
pdwAttrib uint A combination of flags from the enum_EVENTATTRIBUTES enumeration.
return int
        public int GetAttributes(out uint pdwAttrib)
        {
            pdwAttrib = (uint)(enum_EVENTATTRIBUTES.EVENT_ASYNC_STOP);
            return VSConstants.S_OK;
        }
AD7StepCompletedEvent