VSNDK.DebugEngine.AD7StoppingEvent.IDebugEvent2 C# (CSharp) Method

IDebugEvent2() private method

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