コード例 #1
0
 static XhtmlOptions()
 {
     Defaults = new XhtmlOptions();
     DefaultsWithoutStyleElement = new XhtmlOptions();
     DefaultsWithoutStyleElement.EmitStyleTag = false;
 }
コード例 #2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="XhtmlFormatter"/> class with the specified options.
        /// </summary>
        public XhtmlFormatter(XhtmlOptions options)
        {
            ArgumentValidator.ThrowIfNull(options, "options");

            this.m_options = options;
        }
コード例 #3
0
ファイル: XhtmlFormatter.cs プロジェクト: svermeulen/iris
        /// <summary>
        /// Initializes a new instance of the <see cref="XhtmlFormatter"/> class with the specified options.
        /// </summary>
        public XhtmlFormatter(XhtmlOptions options)
        {
            ArgumentValidator.ThrowIfNull(options, "options");

            this.m_options = options;
        }
コード例 #4
0
ファイル: XhtmlFormatter.cs プロジェクト: svermeulen/iris
 /// <summary>
 /// Initializes a new instance of the <see cref="XhtmlFormatter" /> using default options.
 /// </summary>
 public XhtmlFormatter()
 {
     this.m_options = new XhtmlOptions();
 }
コード例 #5
0
ファイル: XhtmlOptions.cs プロジェクト: svermeulen/iris
 static XhtmlOptions()
 {
     Defaults = new XhtmlOptions();
     DefaultsWithoutStyleElement = new XhtmlOptions();
     DefaultsWithoutStyleElement.EmitStyleTag = false;
 }