|   | LogStackTrace(Boolean, Int32, Int32) Constructor | 
        
        
            Creates a stack trace object
            
        
        Namespace: GSF.DiagnosticsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
 Syntax
Syntaxpublic LogStackTrace(
	bool lookupFileInfo = true,
	int skipCount = 0,
	int maxStackFrames = 2147483647
)
Public Sub New ( 
	Optional lookupFileInfo As Boolean = true,
	Optional skipCount As Integer = 0,
	Optional maxStackFrames As Integer = 2147483647
)
public:
LogStackTrace(
	bool lookupFileInfo = true, 
	int skipCount = 0, 
	int maxStackFrames = 2147483647
)
new : 
        ?lookupFileInfo : bool * 
        ?skipCount : int * 
        ?maxStackFrames : int 
(* Defaults:
        let _lookupFileInfo = defaultArg lookupFileInfo true
        let _skipCount = defaultArg skipCount 0
        let _maxStackFrames = defaultArg maxStackFrames 2147483647
*)
-> LogStackTraceGSF.Diagnostics.LogStackTrace = function(lookupFileInfo, skipCount, maxStackFrames);
Parameters
- lookupFileInfo  Boolean  (Optional)
- gets if the file paths need to be looked up.
- skipCount  Int32  (Optional)
- the number of frames to skip.
- maxStackFrames  Int32  (Optional)
- the maximum number of frames in the stack trace.
 See Also
See Also