protected ImmutableResponse(Response response, Action<Response> configurationDelegate = null)
        {
            response.ThrowIfNull("response");

            if (configurationDelegate != null)
            {
                configurationDelegate(response);
            }
            _response = response;
        }
Пример #2
0
        protected ImmutableResponse(Response response, Action <Response> configurationDelegate = null)
        {
            response.ThrowIfNull("response");

            if (configurationDelegate != null)
            {
                configurationDelegate(response);
            }
            _response = response;
        }