Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IterationCount

int System.Security.Cryptography.Rfc2898DeriveBytes.IterationCount
getset

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 }
static string ArgumentOutOfRange_NeedPosNum
Definition SR.cs:20
Definition SR.cs:7