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

CreateWithMonitorTopic() static private method

static private CreateWithMonitorTopic ( IActivityMonitor m, bool launchActivity, string &msg ) : DependentToken
m IActivityMonitor
launchActivity bool
msg string
return DependentToken
            internal static DependentToken CreateWithMonitorTopic( IActivityMonitor m, bool launchActivity, out string msg )
            {
                msg = launchActivity ? _prefixLaunch : _prefixCreate;
                DependentToken t = new DependentToken( ((IUniqueId)m).UniqueId, m.NextLogTime(), m.Topic );
                msg += '.';
                return t;
            }