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!

StackTrace.GetFrame

Gets the specified stack frame.

[Visual Basic]
Overridable Public Function GetFrame( _
   ByVal index As Integer _
) As StackFrame
[C#]
public virtual StackFrame GetFrame(
   int index
);
[C++]
public: virtual StackFrame* GetFrame(
   int index
);
[JScript]
public function GetFrame(
   index : int
) : StackFrame;

Parameters

index
The index of the stack frame requested.

Return Value

The specified stack frame.

Remarks

Stack frames are numbered starting at 0, which is the last stack frame pushed.

See Also

StackTrace Class | StackTrace Members | System.Diagnostics Namespace