// Copyright © 2021 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. namespace CefSharp.Preferences { /// /// Response when either /// or are called. /// public class SetProxyResponse : SetPreferenceResponse { /// /// Initializes a new instance of the SetProxyResponse class. /// /// success /// error message public SetProxyResponse(bool success, string errorMessage) : base(success, errorMessage) { } } }