Files
27Aug2021-Cpp2IL-Dump/System/Security/Cryptography/X509Certificates/X509Chain.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

95 lines
3.9 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Represents a chain-building engine for <see cref="T:System.Security.Cryptography.X509Certificates.X509Certificate2" /> certificates.</summary>
// Token: 0x020001E5 RID: 485
[Token(Token = "0x20001E5")]
public class X509Chain : IDisposable
{
// Token: 0x1700025F RID: 607
// (get) Token: 0x06000CBC RID: 3260 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700025F")]
internal X509ChainImpl Impl
{
[Token(Token = "0x6000CBC")]
[Address(RVA = "0xC8EFC0", Offset = "0xC8DFC0", VA = "0x180C8EFC0")]
get
{
return null;
}
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> class.</summary>
// Token: 0x06000CBD RID: 3261 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CBD")]
[Address(RVA = "0xC8EE10", Offset = "0xC8DE10", VA = "0x180C8EE10")]
public X509Chain()
{
}
/// <summary>Initializes a new instance of the <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" /> class specifying a value that indicates whether the machine context should be used.</summary>
/// <param name="useMachineContext">
/// <see langword="true" /> to use the machine context; <see langword="false" /> to use the current user context.</param>
// Token: 0x06000CBE RID: 3262 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CBE")]
[Address(RVA = "0xC8ECF0", Offset = "0xC8DCF0", VA = "0x180C8ECF0")]
public X509Chain(bool useMachineContext)
{
}
/// <summary>Gets or sets the <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy" /> to use when building an X.509 certificate chain.</summary>
/// <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509ChainPolicy" /> object associated with this X.509 chain.</returns>
/// <exception cref="T:System.ArgumentNullException">The value being set for this property is <see langword="null" />.</exception>
// Token: 0x17000260 RID: 608
// (get) Token: 0x06000CBF RID: 3263 RVA: 0x00002050 File Offset: 0x00000250
// (set) Token: 0x06000CC0 RID: 3264 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x17000260")]
public X509ChainPolicy ChainPolicy
{
[Token(Token = "0x6000CBF")]
[Address(RVA = "0xC8EF30", Offset = "0xC8DF30", VA = "0x180C8EF30")]
get
{
return null;
}
[Token(Token = "0x6000CC0")]
[Address(RVA = "0xC8F030", Offset = "0xC8E030", VA = "0x180C8F030")]
set
{
}
}
/// <summary>Releases all of the resources used by this <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" />.</summary>
// Token: 0x06000CC1 RID: 3265 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CC1")]
[Address(RVA = "0xC8EC00", Offset = "0xC8DC00", VA = "0x180C8EC00", Slot = "4")]
public void Dispose()
{
}
/// <summary>Releases the unmanaged resources used by this <see cref="T:System.Security.Cryptography.X509Certificates.X509Chain" />, and optionally releases the managed resources.</summary>
/// <param name="disposing">
/// <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
// Token: 0x06000CC2 RID: 3266 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CC2")]
[Address(RVA = "0xC8EB70", Offset = "0xC8DB70", VA = "0x180C8EB70", Slot = "5")]
protected virtual void Dispose(bool disposing)
{
}
// Token: 0x06000CC3 RID: 3267 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000CC3")]
[Address(RVA = "0xC8EC70", Offset = "0xC8DC70", VA = "0x180C8EC70", Slot = "1")]
protected override void Finalize()
{
}
// Token: 0x040006E1 RID: 1761
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x40006E1")]
private X509ChainImpl impl;
}
}