ACMESharp.AcmeClient.AcmeWebException.AcmeWebException C# (CSharp) Метод

AcmeWebException() публичный Метод

public AcmeWebException ( WebException innerException, string message = null, AcmeHttpResponse response = null ) : System
innerException System.Net.WebException
message string
response AcmeHttpResponse
Результат System
            public AcmeWebException(WebException innerException, string message = null,
                    AcmeHttpResponse response = null)
                : base(message, innerException)
            {
                Response = response;
                if (Response?.ProblemDetail?.OrignalContent != null)
                    this.With(nameof(Response.ProblemDetail),
                            Response.ProblemDetail.OrignalContent);
            }

Same methods

AcmeClient.AcmeWebException::AcmeWebException ( SerializationInfo info, StreamingContext context ) : System
AcmeClient.AcmeWebException