|
| 1 | +[assembly: System.CLSCompliant(true)] |
| 2 | +[assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/0xced/serilog-formatting-log4net.git")] |
| 3 | +[assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName="")] |
| 4 | +namespace Serilog.Formatting.Log4Net |
| 5 | +{ |
| 6 | + public enum CDataMode |
| 7 | + { |
| 8 | + Always = 0, |
| 9 | + Never = 1, |
| 10 | + IfNeeded = 2, |
| 11 | + } |
| 12 | + public delegate string ExceptionFormatter(System.Exception exception); |
| 13 | + public enum Indentation |
| 14 | + { |
| 15 | + Space = 0, |
| 16 | + Tab = 1, |
| 17 | + } |
| 18 | + public class IndentationSettings |
| 19 | + { |
| 20 | + public IndentationSettings(Serilog.Formatting.Log4Net.Indentation indentation, byte size) { } |
| 21 | + public override string ToString() { } |
| 22 | + } |
| 23 | + [System.Flags] |
| 24 | + public enum LineEnding |
| 25 | + { |
| 26 | + None = 0, |
| 27 | + LineFeed = 1, |
| 28 | + CarriageReturn = 2, |
| 29 | + } |
| 30 | + public static class LineEndingExtensions |
| 31 | + { |
| 32 | + public static string ToCharacters(this Serilog.Formatting.Log4Net.LineEnding lineEnding) { } |
| 33 | + } |
| 34 | + public class Log4NetTextFormatter : Serilog.Formatting.ITextFormatter |
| 35 | + { |
| 36 | + public Log4NetTextFormatter() { } |
| 37 | + public Log4NetTextFormatter(System.Action<Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder>? configureOptions) { } |
| 38 | + public void Format(Serilog.Events.LogEvent logEvent, System.IO.TextWriter output) { } |
| 39 | + } |
| 40 | + public class Log4NetTextFormatterOptionsBuilder |
| 41 | + { |
| 42 | + public Log4NetTextFormatterOptionsBuilder() { } |
| 43 | + public Serilog.Formatting.Log4Net.CDataMode CDataMode { get; } |
| 44 | + public Serilog.Formatting.Log4Net.PropertyFilter FilterProperty { get; } |
| 45 | + public Serilog.Formatting.Log4Net.ExceptionFormatter FormatException { get; } |
| 46 | + public System.IFormatProvider? FormatProvider { get; } |
| 47 | + public Serilog.Formatting.Log4Net.IndentationSettings? IndentationSettings { get; } |
| 48 | + public Serilog.Formatting.Log4Net.LineEnding LineEnding { get; } |
| 49 | + public System.Xml.XmlQualifiedName? Log4NetXmlNamespace { get; } |
| 50 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UseCDataMode(Serilog.Formatting.Log4Net.CDataMode cDataMode) { } |
| 51 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UseExceptionFormatter(Serilog.Formatting.Log4Net.ExceptionFormatter formatException) { } |
| 52 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UseFormatProvider(System.IFormatProvider? formatProvider) { } |
| 53 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UseIndentationSettings(Serilog.Formatting.Log4Net.IndentationSettings indentationSettings) { } |
| 54 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UseLineEnding(Serilog.Formatting.Log4Net.LineEnding lineEnding) { } |
| 55 | + public void UseLog4JCompatibility() { } |
| 56 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UseLog4NetXmlNamespace(System.Xml.XmlQualifiedName? log4NetXmlNamespace) { } |
| 57 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UseNoIndentation() { } |
| 58 | + public Serilog.Formatting.Log4Net.Log4NetTextFormatterOptionsBuilder UsePropertyFilter(Serilog.Formatting.Log4Net.PropertyFilter filterProperty) { } |
| 59 | + } |
| 60 | + public delegate bool PropertyFilter(Serilog.Events.LogEvent logEvent, string propertyName); |
| 61 | +} |
0 commit comments