Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CallStackCheck.cs
1using System.Diagnostics;
2
4{
8 public abstract class CallStackCheck : ICallStackCheck
9 {
14 {
15 }
16
26 public abstract bool? Check(FrameInformation Frame);
27 }
28}
Abstract base class for call stack checks.
abstract ? bool Check(FrameInformation Frame)
Performs a check of a stack frame.
CallStackCheck()
Abstract base class for call stack checks.
Contains information about a specific frame in a call stack.
Interface for call stack checks.