Files
niko 8fc35183db a
2026-04-11 22:19:20 +02:00

27 lines
769 B
C#

using System;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Provides storage for multiple credentials.</summary>
// Token: 0x02000220 RID: 544
[Token(Token = "0x2000220")]
public class CredentialCache
{
/// <summary>Gets the system credentials of the application.</summary>
/// <returns>An <see cref="T:System.Net.ICredentials" /> that represents the system credentials of the application.</returns>
// Token: 0x1700028F RID: 655
// (get) Token: 0x06000DE0 RID: 3552 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700028F")]
public static ICredentials DefaultCredentials
{
[Token(Token = "0x6000DE0")]
[Address(RVA = "0x26FFB30", Offset = "0x26FE930", VA = "0x1826FFB30")]
get
{
return null;
}
}
}
}