mirror of
https://github.com/nsnail/Ocelot.git
synced 2025-04-20 17:02:50 +08:00
11 lines
502 B
Plaintext
11 lines
502 B
Plaintext
var downstreamReRoute = RequestScopedDataRepository.Get<DownstreamReRoute>("DownstreamReRoute");
|
|
// todo check downstreamReRoute is ok
|
|
|
|
var errors = RequestScopedDataRepository.Get<List<Error>>("Errors");
|
|
// todo check errors is ok
|
|
|
|
var downstreamResponse = RequestScopedDataRepository.Get<DownstreamResponse>("DownstreamResponse");
|
|
// todo check downstreamResponse is ok
|
|
|
|
var context = RequestScopedDataRepository.Get<DownstreamContext>("DownstreamContext").Data;
|
|
// todo check downstreamcontext is ok |