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

◆ HashName

string System.Security.Cryptography.HMAC.HashName
getsetinherited

Definition at line 23 of file HMAC.cs.

24 {
25 get
26 {
27 return _hashName;
28 }
29 set
30 {
31 if (value == null)
32 {
33 throw new ArgumentNullException("HashName");
34 }
35 if (_hashName != null && value != _hashName)
36 {
37 throw new PlatformNotSupportedException(System.SR.HashNameMultipleSetNotSupported);
38 }
40 }
41 }
static string HashNameMultipleSetNotSupported
Definition SR.cs:68
Definition SR.cs:7