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

◆ Provider

CngProvider System.Security.Cryptography.CngKeyCreationParameters.Provider
getset

Definition at line 17 of file CngKeyCreationParameters.cs.

18 {
19 get
20 {
21 return _provider;
22 }
23 set
24 {
25 if (value == null)
26 {
27 throw new ArgumentNullException("value");
28 }
30 }
31 }

Referenced by System.Security.Cryptography.CngKey.Create().