Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/ICssCharsetRule.cs @ 13777

Last change on this file since 13777 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 1.2 KB
Line 
1using System;
2namespace SharpVectors.Dom.Css
3{
4  /// <summary>
5  /// The CSSCharsetRule interface represents a @charset rule in a
6  /// CSS style sheet. The value of the encoding attribute does not
7  /// affect the encoding of text data in the DOM objects; this
8  /// encoding is always UTF-16. After a stylesheet is loaded, the
9  /// value of the encoding attribute is the value found in the
10  /// @charset rule. If there was no @charset in the original
11  /// document, then no CSSCharsetRule is created. The value of the
12  /// encoding attribute may also be used as a hint for the
13  /// encoding used on serialization of the style sheet.
14  /// </summary>
15  /// <developer>niklas@protocol7.com</developer>
16  /// <completed>50</completed>
17  public interface ICssCharsetRule : ICssRule
18  {
19    /// <summary>
20    /// The encoding information used in this @charset rule.
21    /// </summary>
22    /// <exception cref="DomException">SYNTAX_ERR: Raised if the specified encoding value has a syntax error and is unparsable.</exception>
23    /// <exception cref="DomException">NO_MODIFICATION_ALLOWED_ERR: Raised if this encoding rule is readonly.</exception>
24    string Encoding
25    {
26      get;
27      set;
28    }
29  }
30}
Note: See TracBrowser for help on using the repository browser.