Ejemplo n.º 1
0
        RequestHashConfig UpdateNew(Action <RequestHashConfig, HttpMessageHashHandler> updater,
                                    HttpMessageHashHandler update)
        {
            var config = new RequestHashConfig(this);

            updater(config, update);
            return(config);
        }
Ejemplo n.º 2
0
 RequestHashConfig(RequestHashConfig that) :
     this(that.Method, that.Url, that.Version,
          that.Headers, that.Content, that.TrailingHeaders)
 {
 }