CK.Core.ActivityMonitor.DependentToken.CreateWithDependentTopic C# (CSharp) Method

CreateWithDependentTopic() static private method

static private CreateWithDependentTopic ( IActivityMonitor m, bool launchActivity, string dependentTopic, string &msg ) : DependentToken
m IActivityMonitor
launchActivity bool
dependentTopic string
msg string
return DependentToken
            internal static DependentToken CreateWithDependentTopic( IActivityMonitor m, bool launchActivity, string dependentTopic, out string msg )
            {
                msg = AppendTopic( launchActivity ? _prefixLaunchWithTopic : _prefixCreateWithTopic, dependentTopic );
                return new DependentToken( ((IUniqueId)m).UniqueId, m.NextLogTime(), dependentTopic );
            }