@Pickels is correct in noting that Flux is typically a front-end architecture. It was originally conceived to be only for the front end.
However, it has been adapted to a back-end architecture by a few people, notably by the folks at Yahoo. But Flux does not need to be the back end architecture to serve an isomorphic application with React.
I've noted two distinct approaches to how a React + Flux app can be served isomorphically. One is the Yahoo approach, and the Fluxible framework and their examples are a good place to start for examining that one. That's Node, as you said.
However, if you take a look at how Soundcloud has approached the problem, you'll see something quite different. Their back end is all in Scala. But they spin up a Nashorn instance and send a single initialization action through the Flux application in that instance to get an initial render of the React view layer. Then they send that down as HTML.
If you are looking for Flux-like things in the .NET community, you may want to check out application frameworks based on CQRS (Command Query Responsibility Segregation), which I believe has had some popularity in the .NET community for a while. The development of Flux was influenced somewhat by CQRS, dataflow programming and reactive programming, and CQRS is probably Flux's closest cousin in the family tree of architectural patterns.