Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IDtdEntityInfo.cs
Go to the documentation of this file.
1namespace System.Xml;
2
3internal interface IDtdEntityInfo
4{
5 string Name { get; }
6
7 bool IsExternal { get; }
8
9 bool IsDeclaredInExternal { get; }
10
11 bool IsUnparsedEntity { get; }
12
13 bool IsParameterEntity { get; }
14
15 string BaseUriString { get; }
16
17 string DeclaredUriString { get; }
18
19 string SystemId { get; }
20
21 string PublicId { get; }
22
23 string Text { get; }
24
25 int LineNumber { get; }
26
27 int LinePosition { get; }
28}