Projekt

Obecné

Profil

Stáhnout (739 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
using Core.Entities;
2
using System;
3
using System.Collections.Generic;
4
using System.Linq;
5
using System.Text;
6
using System.Threading.Tasks;
7
using static Core.Services.HTMLService;
8

    
9
namespace Core.Services
10
{
11
    public interface IHTMLService
12
    {
13
        public (string, CachedInfo) FullPreprocessHTML(string htmlSource, List<AnnotationTagGeneric> tags);
14
        public (string, CachedInfo) PartialPreprocessHTMLAddTag(string htmlToEdit, string htmlOriginal, AnnotationTag tagToAdd, List<AnnotationTagGeneric> tags, CachedInfo cachedInfo);
15
        public (string, CachedInfo) PartialPreprocessHTMLRemoveTag(string htmlToEdit, string htmlOriginal, AnnotationTag tagToRemove, List<AnnotationTagGeneric> tags, CachedInfo cachedInfo);
16
    }
17
}
(2-2/2)