Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
X509Certificate2Enumerator.cs
Go to the documentation of this file.
3
5
6public sealed class X509Certificate2Enumerator : IEnumerator, IEnumerator<X509Certificate2>, IDisposable
7{
8 private readonly IEnumerator _enumerator;
9
11
12 object IEnumerator.Current => Current;
13
18
19 public bool MoveNext()
20 {
21 return _enumerator.MoveNext();
22 }
23
25 {
26 return MoveNext();
27 }
28
29 public void Reset()
30 {
32 }
33
35 {
36 Reset();
37 }
38
40 {
41 }
42}