[runtime] Disable some tests in full-aot mode which cannot be AOTed because of type...
[mono.git] / mcs / class / monodoc / Monodoc / generators / html / Idem.cs
1 using System;
2 using System.IO;
3 using System.Text;
4 using System.Collections.Generic;
5
6 using Monodoc;
7 using Monodoc.Generators;
8
9 namespace Monodoc.Generators.Html
10 {
11         // Input is expected to be already HTML so just return it
12         public class Idem : IHtmlExporter
13         {
14                 public string CssCode {
15                         get {
16                                 return string.Empty;
17                         }
18                 }
19
20                 public string Export (Stream input, Dictionary<string, string> extraArgs)
21                 {
22                         if (input == null)
23                                 return null;
24                         return new StreamReader (input).ReadToEnd ();
25                 }
26
27                 public string Export (string input, Dictionary<string, string> extraArgs)
28                 {
29                         if (string.IsNullOrEmpty (input))
30                                 return null;
31                         return input;
32                 }
33         }
34 }