DynamicRest.Fluent.RestClientBuilder.WithCustomHeaders C# (CSharp) Метод

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

public WithCustomHeaders ( string>.Dictionary headers ) : IRestClientBuilder
headers string>.Dictionary
Результат IRestClientBuilder
        public IRestClientBuilder WithCustomHeaders(Dictionary<string, string> headers)
        {
            foreach (var header in headers)
            {
                _customHeaders.Add(header.Key, header.Value);
            }
            return this;
        }