File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -30,31 +30,31 @@ public interface IHtmlSanitizer
30
30
IMarkupFormatter OutputFormatter { get ; set ; }
31
31
32
32
/// <summary>
33
- /// Gets or sets the allowed CSS at-rules such as "@media" and "@font-face".
33
+ /// Gets the allowed CSS at-rules such as "@media" and "@font-face".
34
34
/// </summary>
35
35
/// <value>
36
36
/// The allowed CSS at-rules.
37
37
/// </value>
38
38
ISet < CssRuleType > AllowedAtRules { get ; }
39
39
40
40
/// <summary>
41
- /// Gets or sets the allowed HTTP schemes such as "http" and "https".
41
+ /// Gets the allowed URI schemes such as "http" and "https".
42
42
/// </summary>
43
43
/// <value>
44
- /// The allowed HTTP schemes.
44
+ /// The allowed URI schemes.
45
45
/// </value>
46
46
ISet < string > AllowedSchemes { get ; }
47
47
48
48
/// <summary>
49
- /// Gets or sets the allowed HTML tag names such as "a" and "div".
49
+ /// Gets the allowed HTML tag names such as "a" and "div".
50
50
/// </summary>
51
51
/// <value>
52
52
/// The allowed tag names.
53
53
/// </value>
54
54
ISet < string > AllowedTags { get ; }
55
55
56
56
/// <summary>
57
- /// Gets or sets the allowed HTML attributes such as "href" and "alt".
57
+ /// Gets the allowed HTML attributes such as "href" and "alt".
58
58
/// </summary>
59
59
/// <value>
60
60
/// The allowed HTML attributes.
@@ -174,4 +174,4 @@ public interface IHtmlSanitizer
174
174
/// <returns>The sanitized HTML document.</returns>
175
175
string SanitizeDocument ( string html , string baseUrl = "" , IMarkupFormatter ? outputFormatter = null ) ;
176
176
}
177
- }
177
+ }
You can’t perform that action at this time.
0 commit comments