Files
WireMock.Net-wiremock/src/WireMock.Net/Settings/WebProxySettings.cs
2022-03-10 20:58:18 +01:00

28 lines
712 B
C#

using JetBrains.Annotations;
namespace WireMock.Settings
{
/// <summary>
/// WebProxySettings
/// </summary>
public class WebProxySettings
{
/// <summary>
/// A string instance that contains the address of the proxy server.
/// </summary>
[PublicAPI]
public string Address { get; set; }
/// <summary>
/// The user name associated with the credentials.
/// </summary>
[PublicAPI]
public string UserName { get; set; }
/// <summary>
/// The password for the user name associated with the credentials.
/// </summary>
[PublicAPI]
public string Password { get; set; }
}
}