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

◆ Oid() [4/5]

System.Security.Cryptography.Oid.Oid ( Oid oid)
inline

Definition at line 94 of file Oid.cs.

95 {
96 if (oid == null)
97 {
98 throw new ArgumentNullException("oid");
99 }
100 _value = oid._value;
101 _friendlyName = oid._friendlyName;
102 _group = oid._group;
103 _hasInitializedFriendlyName = oid._hasInitializedFriendlyName;
104 }
readonly OidGroup _group
Definition Oid.cs:13

References System.Security.Cryptography.Oid._friendlyName, System.Security.Cryptography.Oid._group, System.Security.Cryptography.Oid._hasInitializedFriendlyName, and System.Security.Cryptography.Oid._value.