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

◆ Dispose() [2/2]

override void System.Security.Cryptography.HMACMD5.Dispose ( bool disposing)
inlineprotectedvirtual

Reimplemented from System.Security.Cryptography.HMAC.

Definition at line 111 of file HMACMD5.cs.

112 {
113 if (disposing)
114 {
115 HMACCommon hMacCommon = _hMacCommon;
116 if (hMacCommon != null)
117 {
118 _hMacCommon = null;
119 hMacCommon.Dispose(disposing);
120 }
121 }
122 base.Dispose(disposing);
123 }
void Dispose(bool disposing)
Definition HMACCommon.cs:98

References System.Security.Cryptography.HMACMD5._hMacCommon, and Internal.Cryptography.HMACCommon.Dispose().