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
◆
this[int index]
X509Extension
System.Security.Cryptography.X509Certificates.X509ExtensionCollection.this[int
index
]
get
Definition at line
16
of file
X509ExtensionCollection.cs
.
17
{
18
get
19
{
20
if
(
index
< 0)
21
{
22
throw
new
InvalidOperationException
(
System
.
SR
.
InvalidOperation_EnumNotStarted
);
23
}
24
if
(
index
>=
_list
.
Count
)
25
{
26
throw
new
ArgumentOutOfRangeException(
"index"
,
System
.
SR
.
ArgumentOutOfRange_Index
);
27
}
28
return
_list
[
index
];
29
}
30
}
System.Collections.Generic.Dictionary.Count
int Count
Definition
Dictionary.cs:682
System.SR.ArgumentOutOfRange_Index
static string ArgumentOutOfRange_Index
Definition
SR.cs:30
System.SR.InvalidOperation_EnumNotStarted
static string InvalidOperation_EnumNotStarted
Definition
SR.cs:46
System.SR
Definition
SR.cs:7
System.Security.Cryptography.X509Certificates.X509ExtensionCollection._list
readonly List< X509Extension > _list
Definition
X509ExtensionCollection.cs:8
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.index
@ index
System
Definition
BlockingCollection.cs:8
System
Security
Cryptography
X509Certificates
X509ExtensionCollection
Generated by
1.10.0