Patcher.Rules.Compiled.Helpers.FormsHelper.FindAllHavingTag C# (CSharp) Method

FindAllHavingTag() public method

public FindAllHavingTag ( string text ) : IFormCollection
text string
return IFormCollection
        public IFormCollection<IForm> FindAllHavingTag(string text)
        {
            var items = context.Rule.Engine.Tags.AllHavingTag(text);
            return context.Rule.Engine.ProxyProvider.CreateFormCollectionProxy<IForm>(ProxyMode.Discovered, items);
        }