using System;
namespace System.Net
{
/// Provides the interface for retrieving credentials for a host, port, and authentication type.
// Token: 0x0200023F RID: 575
public interface ICredentialsByHost
{
/// Returns the credential for the specified host, port, and authentication protocol.
/// A for the specified host, port, and authentication protocol, or null if there are no credentials available 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.
// Token: 0x0600146E RID: 5230
NetworkCredential GetCredential(string host, int port, string authType);
}
}