CK.Core.ActivityMonitorExtension.DependentActivity C# (CSharp) Method

DependentActivity() static public method

Enables dependent activities token creation and activities launch. Use IActivityMonitor.StartDependentActivity to declare the start of a dependent activity on the target monitor.
static public DependentActivity ( this @this, [ fileName = null, [ lineNumber ) : DependentSender
@this this
fileName [ Source file name of the emitter (automatically injected by C# compiler but can be explicitly set).
lineNumber [ Line number in the source file (automatically injected by C# compiler but can be explicitly set).
return DependentSender
        static public DependentSender DependentActivity( this IActivityMonitor @this, [CallerFilePath]string fileName = null, [CallerLineNumber]int lineNumber = 0 )
        {
            return new DependentSender( @this, fileName, lineNumber );
        }