Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

27 lines
767 B
C#

using System;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Provides storage for multiple credentials.</summary>
// Token: 0x0200021C RID: 540
[Token(Token = "0x200021C")]
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: 0x1700028B RID: 651
// (get) Token: 0x06000DCA RID: 3530 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x1700028B")]
public static ICredentials DefaultCredentials
{
[Token(Token = "0x6000DCA")]
[Address(RVA = "0xB251A0", Offset = "0xB241A0", VA = "0x180B251A0")]
get
{
return null;
}
}
}
}