This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
using System;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Provides the interface for retrieving credentials for a host, port, and authentication type.</summary>
// Token: 0x0200022B RID: 555
[Token(Token = "0x200022B")]
public interface ICredentialsByHost
{
/// <summary>Returns the credential for the specified host, port, and authentication protocol.</summary>
/// <param name="host">The host computer that is authenticating the client.</param>
/// <param name="port">The port on <paramref name="host" /> that the client will communicate with.</param>
/// <param name="authenticationType">The authentication protocol.</param>
/// <returns>A <see cref="T:System.Net.NetworkCredential" /> for the specified host, port, and authentication protocol, or <see langword="null" /> if there are no credentials available for the specified host, port, and authentication protocol.</returns>
// Token: 0x06000DEF RID: 3567
[Token(Token = "0x6000DEF")]
[Address(Slot = "0")]
NetworkCredential GetCredential(string host, int port, string authenticationType);
}
}