NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

StackFrame Constructor

Initializes a new StackFrame object corresponding to the active stack frame.

Overload List

Initializes a new StackFrame object corresponding to the active stack frame.

[Visual Basic] Overloads Public Sub New()
[C#] public StackFrame();
[C++] public: StackFrame();
[JScript] public function StackFrame();

[To be supplied.]

[Visual Basic] Overloads Public Sub New(Boolean)
[C#] public StackFrame(bool);
[C++] public: StackFrame(bool);
[JScript] public function StackFrame(Boolean);

Initializes a new StackFrame object corresponding to the active stack frame.

[Visual Basic] Overloads Public Sub New(Integer)
[C#] public StackFrame(int);
[C++] public: StackFrame(int);
[JScript] public function StackFrame(int);

[To be supplied.]

[Visual Basic] Overloads Public Sub New(Integer, Boolean)
[C#] public StackFrame(int, bool);
[C++] public: StackFrame(int, bool);
[JScript] public function StackFrame(int, Boolean);

Constructs a "fake" stack frame that just contains the given file name and line number. Use this constructor when you don't want to use the debugger's line mapping logic.

[Visual Basic] Overloads Public Sub New(String, Integer)
[C#] public StackFrame(String, int);
[C++] public: StackFrame(String*, int);
[JScript] public function StackFrame(String, int);

[To be supplied.]

[Visual Basic] Overloads Public Sub New(String, Integer, Integer)
[C#] public StackFrame(String, int, int);
[C++] public: StackFrame(String*, int, int);
[JScript] public function StackFrame(String, int, int);

See Also

StackFrame Class | StackFrame Members | System.Diagnostics Namespace