using System;
using Cpp2IlInjected;
namespace System.Net
{
/// Provides the base authentication interface for retrieving credentials for Web client authentication.
// Token: 0x02000226 RID: 550
[Token(Token = "0x2000226")]
public interface ICredentials
{
/// Returns a object that is associated with the specified URI, and authentication type.
/// The that the client is providing authentication for.
/// The type of authentication, as defined in the property.
/// The that is associated with the specified URI and authentication type, or, if no credentials are available, .
// Token: 0x06000DD8 RID: 3544
[Token(Token = "0x6000DD8")]
[Address(Slot = "0")]
NetworkCredential GetCredential(Uri uri, string authType);
}
}