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 (String, Int32)

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( _
   ByVal fileName As String, _
   ByVal lineNumber As Integer _
)
[C#]
public StackFrame(
   string fileName,
   int lineNumber
);
[C++]
public: StackFrame(
   String* fileName,
   int lineNumber
);
[JScript]
public function StackFrame(
   fileName : String,
   lineNumber : int
);

Parameters

fileName
The given file name.
lineNumber
The line number in the specified file.

See Also

StackFrame Class | StackFrame Members | System.Diagnostics Namespace | StackFrame Constructor Overload List