Princes of Wagram

Prince of Wagram (French: Prince de Wagram; [pʁɛ̃s də vaɡ.ʁam]) was a title of French nobility that was granted to Marshal Louis-Alexandre Berthier in 1809. It was created as a victory title by Emperor Napoleon I after the Battle of Wagram. Berthier had previously been granted the title of Sovereign Prince of Neuchâtel in 1806.

Arms of the first Prince of Wagram

After the death of Berthier in 1815, the subsequent inheritors of the title lived at the Château de Grosbois, a large estate in Boissy-Saint-Léger, Val-de-Marne, southeast of Paris. Since the 4th Prince of Wagram had not yet married when he was killed in action during World War I, the title became extinct in 1918.

List of titleholders

  1. Louis-Alexandre Berthier, 1st Prince of Wagram (February 20, 1753 – June 1, 1815)
  2. Napoléon Alexandre Louis Joseph Berthier, 2nd Prince of Wagram (September 10, 1810 – February 10, 1887)
  3. Louis Philippe Marie Alexandre Berthier, 3rd Prince of Wagram (March 24, 1836 – July 15, 1911)
  4. Alexandre Louis Philippe Marie Berthier, 4th Prince of Wagram (July 20, 1883 – May 30, 1918)
gollark: ```javascriptimport m = require("mithril")import * as RPCTypes from "../common/rpc"export const sendMessage = (msg: RPCTypes.Message): Promise<RPCTypes.MessageResponse> => { return m.request( { method: "POST", url: "./rpc/", body: msg, }).then(res => { const [ type, p1, p2 ] = res if (type === "error") { throw new RPCTypes.RPCError(p2, p1) } else if (type === "ok") { return p1 } else { throw new Error("Invalid RPC response") } })}const handler = { get: (target, prop) => (...args) => sendMessage([prop, ...args])}export const serverProxy = new Proxy({}, handler)```
gollark: The RPC thing and some JS hax on the client mean I can basically just call any function the server provides as if it's a local one (except asynchronously).
gollark: minoteaur is just plain RPC - you do `POST /rpc` with a function and its arguments as JSON.
gollark: You're forced to try and map the data/functions your thing provides onto a structure which may not really fit them well.
gollark: To be honest I find REST kind of an uncool way to design APIs.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.