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

◆ this[int index]

X509Certificate System.Security.Cryptography.X509Certificates.X509CertificateCollection.this[int index]
getset

Implements System.Collections.IList.

Definition at line 45 of file X509CertificateCollection.cs.

46 {
47 get
48 {
49 return (X509Certificate)base.List[index];
50 }
51 set
52 {
53 if (value == null)
54 {
55 throw new ArgumentNullException("value");
56 }
57 base.List[index] = value;
58 }
59 }