Пример #1
0
 public void SetTags(ITableTemplate template, TaskContext context)
 {
     template.Dispatcher.Invoke(() =>
     {
         var tags = (TagInfo)TagInfoUtility.Names.Random();
         template.SetTags(context.Authentication, tags);
     });
 }
Пример #2
0
        public static void InitializeRandom(this ITableTemplate template, Authentication authentication)
        {
            var tableName = RandomUtility.NextIdentifier();

            template.SetTableName(authentication, tableName);
            if (RandomUtility.Within(50) == true)
            {
                template.SetTags(authentication, (TagInfo)TagInfoUtility.Names.Random());
            }
            if (RandomUtility.Within(50) == true)
            {
                template.SetComment(authentication, RandomUtility.NextString());
            }
            template.AddRandomColumns(authentication);
        }
 public void SetTags()
 {
     template.SetTags(authentication, RandomUtility.NextTags());
 }