System::Diagnostics::StackFrame class

StackFrame class

Gets information on single stack frame. MSVS only. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class StackFrame : public System::Object

Methods

MethodDescription
virtual GetFileColumnNumber()Gets the colnum number.
virtual GetFileLineNumber()Gets the line number.
virtual GetFileName()Gets the file name.
GetMethod()Gets method information.
operator=(const StackFrame&) constNo changing.
StackFrame(int)Creates stack frame on current stack offset.
StackFrame(const StackFrame&)No copying.
virtual ~StackFrame()Destructor.

See Also