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
+16
View File
@@ -0,0 +1,16 @@
using System;
namespace System.Net
{
/// <summary>Provides the base authentication interface for retrieving credentials for Web client authentication.</summary>
// Token: 0x0200023D RID: 573
public interface ICredentials
{
/// <summary>Returns a <see cref="T:System.Net.NetworkCredential" /> object that is associated with the specified URI, and authentication type.</summary>
/// <returns>The <see cref="T:System.Net.NetworkCredential" /> that is associated with the specified URI and authentication type, or, if no credentials are available, null.</returns>
/// <param name="uri">The <see cref="T:System.Uri" /> that the client is providing authentication for. </param>
/// <param name="authType">The type of authentication, as defined in the <see cref="P:System.Net.IAuthenticationModule.AuthenticationType" /> property. </param>
// Token: 0x0600146C RID: 5228
NetworkCredential GetCredential(global::System.Uri uri, string authType);
}
}