forked from jexuswebserver/JexusManager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathILogSettings.cs
78 lines (76 loc) · 1.5 KB
/
ILogSettings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// Copyright (c) Lex Li. All rights reserved.
//
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Runtime.InteropServices;
namespace Microsoft.ApplicationHost
{
[ComVisible(true), Guid("b88f4753-99ce-40e9-bf83-fcb4c29efa2f")]
public interface ILogSettings
{
[DispId(1)]
bool LogInUtf8
{
get;
}
[DispId(2)]
uint LogFileMode
{
get;
}
[DispId(3)]
bool BinaryLogFileEnabled
{
get;
}
[DispId(4)]
string BinaryLogFileDirectory
{
get;
}
[DispId(5)]
uint BinaryLogFilePeriod
{
get;
}
[DispId(6)]
long BinaryLogFileTruncateSize
{
get;
}
[DispId(7)]
bool BinaryLogFileLocalTimeRollover
{
get;
}
[DispId(8)]
bool W3CLogFileEnabled
{
get;
}
[DispId(9)]
string W3CLogFileDirectory
{
get;
}
[DispId(10)]
uint W3CLogFilePeriod
{
get;
}
[DispId(11)]
long W3CLogFileTruncateSize
{
get;
}
[DispId(12)]
bool W3CLogFileLocalTimeRollover
{
get;
}
[DispId(13)]
uint W3CLogExtFileFlags
{
get;
}
}
}