using System; using Cpp2IlInjected; namespace System.Net { /// Provides the interface for retrieving credentials for a host, port, and authentication type. // Token: 0x02000227 RID: 551 [Token(Token = "0x2000227")] 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: 0x06000DD9 RID: 3545 [Token(Token = "0x6000DD9")] [Address(Slot = "0")] NetworkCredential GetCredential(string host, int port, string authenticationType); } }