m
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace System.Security.Cryptography.X509Certificates
|
||||
{
|
||||
/// <summary>Supports a simple iteration over a <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object. This class cannot be inherited.</summary>
|
||||
// Token: 0x020001DF RID: 479
|
||||
[Token(Token = "0x20001DF")]
|
||||
public sealed class X509Certificate2Enumerator : IEnumerator
|
||||
{
|
||||
// Token: 0x06000C7A RID: 3194 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C7A")]
|
||||
[Address(RVA = "0xC8A900", Offset = "0xC89900", VA = "0x180C8A900")]
|
||||
internal X509Certificate2Enumerator(X509Certificate2Collection collection)
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>Gets the current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
|
||||
/// <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
|
||||
// Token: 0x1700024D RID: 589
|
||||
// (get) Token: 0x06000C7B RID: 3195 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700024D")]
|
||||
public X509Certificate2 Current
|
||||
{
|
||||
[Token(Token = "0x6000C7B")]
|
||||
[Address(RVA = "0xC8A960", Offset = "0xC89960", VA = "0x180C8A960")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>Advances the enumerator to the next element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
|
||||
// Token: 0x06000C7C RID: 3196 RVA: 0x00006A20 File Offset: 0x00004C20
|
||||
[Token(Token = "0x6000C7C")]
|
||||
[Address(RVA = "0xC8A7C0", Offset = "0xC897C0", VA = "0x180C8A7C0")]
|
||||
public bool MoveNext()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>For a description of this member, see <see cref="P:System.Collections.IEnumerator.Current" />.</summary>
|
||||
/// <returns>The current element in the <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2Collection" /> object.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.</exception>
|
||||
// Token: 0x1700024E RID: 590
|
||||
// (get) Token: 0x06000C7D RID: 3197 RVA: 0x00002050 File Offset: 0x00000250
|
||||
[Token(Token = "0x1700024E")]
|
||||
object IEnumerator.Current
|
||||
{
|
||||
[Token(Token = "0x6000C7D")]
|
||||
[Address(RVA = "0xC8A8B0", Offset = "0xC898B0", VA = "0x180C8A8B0", Slot = "5")]
|
||||
get
|
||||
{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.MoveNext" />.</summary>
|
||||
/// <returns>
|
||||
/// <see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
|
||||
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
|
||||
// Token: 0x06000C7E RID: 3198 RVA: 0x00006A38 File Offset: 0x00004C38
|
||||
[Token(Token = "0x6000C7E")]
|
||||
[Address(RVA = "0xC8A810", Offset = "0xC89810", VA = "0x180C8A810", Slot = "4")]
|
||||
bool IEnumerator.MoveNext()
|
||||
{
|
||||
return default(bool);
|
||||
}
|
||||
|
||||
/// <summary>For a description of this member, see <see cref="M:System.Collections.IEnumerator.Reset" />.</summary>
|
||||
/// <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
|
||||
// Token: 0x06000C7F RID: 3199 RVA: 0x00002053 File Offset: 0x00000253
|
||||
[Token(Token = "0x6000C7F")]
|
||||
[Address(RVA = "0xC8A860", Offset = "0xC89860", VA = "0x180C8A860", Slot = "6")]
|
||||
void IEnumerator.Reset()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x040006D2 RID: 1746
|
||||
[FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x40006D2")]
|
||||
private IEnumerator enumerator;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user