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

◆ this[string oid]

Oid? System.Security.Cryptography.OidCollection.this[string oid]
get

Definition at line 24 of file OidCollection.cs.

25 {
26 get
27 {
28 string text = OidLookup.ToOid(oid, OidGroup.All, fallBackToAllGroups: false);
29 if (text == null)
30 {
31 text = oid;
32 }
33 for (int i = 0; i < _count; i++)
34 {
35 Oid oid2 = _oids[i];
36 if (oid2.Value == text)
37 {
38 return oid2;
39 }
40 }
41 return null;
42 }
43 }
static string ToOid(string friendlyName, OidGroup oidGroup, bool fallBackToAllGroups)
Definition OidLookup.cs:39