using System;
using Cpp2IlInjected;
namespace System.Net
{
/// Provides the interface for retrieving credentials for a host, port, and authentication type.
// Token: 0x0200022B RID: 555
[Token(Token = "0x200022B")]
public interface ICredentialsByHost
{
/// Returns the credential for the specified host, port, and authentication protocol.
/// The host computer that is authenticating the client.
/// The port on that the client will communicate with.
/// The authentication protocol.
/// A for the specified host, port, and authentication protocol, or if there are no credentials available for the specified host, port, and authentication protocol.
// Token: 0x06000DEF RID: 3567
[Token(Token = "0x6000DEF")]
[Address(Slot = "0")]
NetworkCredential GetCredential(string host, int port, string authenticationType);
}
}