Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
IterationCount
int System.Security.Cryptography.Rfc2898DeriveBytes.IterationCount
get
set
Definition at line
32
of file
Rfc2898DeriveBytes.cs
.
33
{
34
get
35
{
36
return
(
int
)
_iterations
;
37
}
38
set
39
{
40
if
(
value
<= 0)
41
{
42
throw
new
ArgumentOutOfRangeException(
"value"
,
System
.
SR
.
ArgumentOutOfRange_NeedPosNum
);
43
}
44
_iterations
= (uint)
value
;
45
Initialize
();
46
}
47
}
System.SR.ArgumentOutOfRange_NeedPosNum
static string ArgumentOutOfRange_NeedPosNum
Definition
SR.cs:20
System.SR
Definition
SR.cs:7
System.Security.Cryptography.Rfc2898DeriveBytes._iterations
uint _iterations
Definition
Rfc2898DeriveBytes.cs:14
System.Security.Cryptography.Rfc2898DeriveBytes.Initialize
void Initialize()
Definition
Rfc2898DeriveBytes.cs:247
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Security
Cryptography
Rfc2898DeriveBytes
Generated by
1.10.0