Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NamespaceDecl.cs
Go to the documentation of this file.
1
using
System.Diagnostics.CodeAnalysis
;
2
3
namespace
System.Xml.Xsl.XsltOld
;
4
5
internal
sealed
class
NamespaceDecl
6
{
7
private
string
_prefix
;
8
9
private
string
_nsUri
;
10
11
private
string
_prevDefaultNsUri
;
12
13
private
NamespaceDecl
_next
;
14
15
internal
string
Prefix
=>
_prefix
;
16
17
internal
string
Uri
=>
_nsUri
;
18
19
internal
string
PrevDefaultNsUri
=>
_prevDefaultNsUri
;
20
21
internal
NamespaceDecl
Next
=>
_next
;
22
23
internal
NamespaceDecl
(
string
prefix
,
string
nsUri,
string
prevDefaultNsUri
,
NamespaceDecl
next)
24
{
25
Init
(
prefix
, nsUri,
prevDefaultNsUri
, next);
26
}
27
28
[
MemberNotNull
(
"_prefix"
)]
29
[
MemberNotNull
(
"_nsUri"
)]
30
[
MemberNotNull
(
"_prevDefaultNsUri"
)]
31
internal
void
Init
(
string
prefix
,
string
nsUri,
string
prevDefaultNsUri
,
NamespaceDecl
next)
32
{
33
_prefix
=
prefix
;
34
_nsUri
= nsUri;
35
_prevDefaultNsUri
=
prevDefaultNsUri
;
36
_next
= next;
37
}
38
}
System.Uri
Definition
Uri.cs:16
System.Xml.Xsl.XsltOld.NamespaceDecl._prevDefaultNsUri
string _prevDefaultNsUri
Definition
NamespaceDecl.cs:11
System.Xml.Xsl.XsltOld.NamespaceDecl.Prefix
string Prefix
Definition
NamespaceDecl.cs:15
System.Xml.Xsl.XsltOld.NamespaceDecl._prefix
string _prefix
Definition
NamespaceDecl.cs:7
System.Xml.Xsl.XsltOld.NamespaceDecl.Init
void Init(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl next)
Definition
NamespaceDecl.cs:31
System.Xml.Xsl.XsltOld.NamespaceDecl._nsUri
string _nsUri
Definition
NamespaceDecl.cs:9
System.Xml.Xsl.XsltOld.NamespaceDecl.NamespaceDecl
NamespaceDecl(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl next)
Definition
NamespaceDecl.cs:23
System.Xml.Xsl.XsltOld.NamespaceDecl._next
NamespaceDecl _next
Definition
NamespaceDecl.cs:13
System.Xml.Xsl.XsltOld.NamespaceDecl.Next
NamespaceDecl Next
Definition
NamespaceDecl.cs:21
System.Xml.Xsl.XsltOld.NamespaceDecl.PrevDefaultNsUri
string PrevDefaultNsUri
Definition
NamespaceDecl.cs:19
System.Xml.Xsl.XsltOld.NamespaceDecl
Definition
NamespaceDecl.cs:6
System.Diagnostics.CodeAnalysis
Definition
AllowNullAttribute.cs:1
System.Xml.Xsl.XsltOld
Definition
IXsltDebugger.cs:1
System.Xml.ValueHandleType.Dictionary
@ Dictionary
System.ExceptionArgument.prefix
@ prefix
source
System.Private.Xml
System.Xml.Xsl.XsltOld
NamespaceDecl.cs
Generated by
1.10.0