CK.Core.ActivityMonitorBridgeTarget.SetAutoTags C# (CSharp) Method

SetAutoTags() private method

private SetAutoTags ( CKTrait tags ) : void
tags CKTrait
return void
        internal void SetAutoTags( CKTrait tags )
        {
            _monitor.AutoTags = tags;
        }
    }

Usage Example

 void IActivityMonitorClient.OnAutoTagsChanged(CKTrait newTags)
 {
     if (_pushTopicAndAutoTagsToTarget)
     {
         _bridgeTarget.SetAutoTags(newTags);
     }
 }