Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
this[int index]
X509ChainElement
System.Security.Cryptography.X509Certificates.X509ChainElementCollection.this[int
index
]
get
Definition at line
16
of file
X509ChainElementCollection.cs
.
17
{
18
get
19
{
20
if
(
index
< 0)
21
{
22
throw
new
InvalidOperationException
(
System
.
SR
.
InvalidOperation_EnumNotStarted
);
23
}
24
if
(
index
>=
_elements
.Length)
25
{
26
throw
new
ArgumentOutOfRangeException(
"index"
,
System
.
SR
.
ArgumentOutOfRange_Index
);
27
}
28
return
_elements
[
index
];
29
}
30
}
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.X509ChainElementCollection._elements
readonly X509ChainElement[] _elements
Definition
X509ChainElementCollection.cs:8
System.Transactions.TransactionExceptionType.InvalidOperationException
@ InvalidOperationException
System.ExceptionArgument.index
@ index
System
Definition
BlockingCollection.cs:8
System
Security
Cryptography
X509Certificates
X509ChainElementCollection
Generated by
1.10.0