Пример #1
0
 public void CheckTestToLoadTag(ITesBeforLoading tag)
 {
     if (tag.Equals(this) || this.Config.convert)
     {
         return;
     }
     foreach (var x in this.IfTags)
     {
         x.FindTagInContent(tag);
     }
 }
Пример #2
0
 public void CheckTestToLoadTag(ITesBeforLoading tag)
 {
     if (tag.Equals(this) || this.Config.convert)
     {
         return;
     }
     foreach (var x in this.IfTags)
     {
         x.FindTagInContent(tag);
     }
 }
Пример #3
0
 public void FindTagInContent(ITesBeforLoading tag)
 {
     if (this.Conttent.Contains(tag.GetPlaceholderName()))
     {
         if (this.TestLink == null)
         {
             this.TestLink = new HashSet <string>();
         }
         this.TestLink.Add(this.Test);
         tag.SetTest(this.TestLink);
         if (this.Lodas == null)
         {
             Lodas = new HashSet <ITesBeforLoading>();
         }
         this.Lodas.Add(tag);
     }
 }
Пример #4
0
 public void FindTagInContent(ITesBeforLoading tag)
 {
     if (this.Conttent.Contains(tag.GetPlaceholderName()))
     {
         if (this.TestLink == null)
         {
             this.TestLink = new HashSet<string>();
         }
         this.TestLink.Add(this.Test);
         tag.SetTest(this.TestLink);
         if (this.Lodas == null)
         {
             Lodas = new HashSet<ITesBeforLoading>();
         }
         this.Lodas.Add(tag);
     }
 }