This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
using System;
namespace System.Net
{
/// <summary>Provides the interface for retrieving credentials for a host, port, and authentication type.</summary>
// Token: 0x0200023F RID: 575
public interface ICredentialsByHost
{
/// <summary>Returns the credential for the specified host, port, and authentication protocol.</summary>
/// <returns>A <see cref="T:System.Net.NetworkCredential" /> for the specified host, port, and authentication protocol, or null if there are no credentials available for the specified host, port, and authentication protocol.</returns>
/// <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>
// Token: 0x0600146E RID: 5230
NetworkCredential GetCredential(string host, int port, string authType);
}
}