Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
HashName
string
System.Security.Cryptography.HMAC.HashName
get
set
inherited
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
}
39
_hashName
=
value
;
40
}
41
}
System.SR.HashNameMultipleSetNotSupported
static string HashNameMultipleSetNotSupported
Definition
SR.cs:68
System.SR
Definition
SR.cs:7
System.Security.Cryptography.HMAC._hashName
string _hashName
Definition
HMAC.cs:7
System.ExceptionArgument.value
@ value
System
Definition
BlockingCollection.cs:8
System
Security
Cryptography
HMACSHA512
Generated by
1.10.0