Terraria
v1.4.4.9
Terraria source code documentation
Toggle main menu visibility
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Properties
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Events
_
a
c
d
e
f
i
l
m
o
p
r
s
t
u
w
Files
File List
File Members
All
Enumerations
Macros
•
All
Classes
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Properties
Events
Macros
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
}
23
internal
NamespaceDecl
(
string
prefix
,
string
nsUri,
string
prevDefaultNsUri
,
NamespaceDecl
next) {
…
}
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
}
31
internal
void
Init
(
string
prefix
,
string
nsUri,
string
prevDefaultNsUri
,
NamespaceDecl
next) {
…
}
38
}
5
internal
sealed
class
NamespaceDecl
{
…
};
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