Test: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
(Die Seite wurde neu angelegt: „{{#mermaid:sequenceDiagram participant Alice participant Bob Alice->John: Hello John, how are you? loop Healthcheck John->John: Fight against hypochondria end Note right of John: Rational thoughts <br/>prevail... John-->Alice: Great! John->Bob: How about you? Bob-->John: Jolly good! }}“) |
Keine Bearbeitungszusammenfassung |
||
(30 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
{{#mermaid: | {{#mermaid:pie title Flächenverteilung von Ahrensburg | ||
"Wohnbaufläche" : 963 | |||
"Gewerbefläche" : 253 | |||
"Waldfläche" : 635 | |||
"Wasserfläche" : 80 | |||
}} | |||
<br> | |||
{{#mermaid:classDiagram | |||
class ActionResult { | |||
<<abstract>> | |||
+ExecuteResultAsync(ActionContext context) Task | |||
} | |||
class ViewResult { | |||
+ViewName : string | |||
+Model : object | |||
+ExecuteResultAsync(ActionContext context) Task | |||
} | |||
class JsonResult { | |||
+Value : object | |||
+ExecuteResultAsync(ActionContext context) Task | |||
} | |||
class FileResult { | |||
+FileName : string | |||
+ContentType : string | |||
+ExecuteResultAsync(ActionContext context) Task | |||
} | |||
class RedirectResult { | |||
+Url : string | |||
+Permanent : bool | |||
+ExecuteResultAsync(ActionContext context) Task | |||
} | |||
class StatusCodeResult { | |||
+StatusCode : int | |||
+ExecuteResultAsync(ActionContext context) Task | |||
} | |||
ActionResult <|-- ViewResult | |||
ActionResult <|-- JsonResult | |||
ActionResult <|-- FileResult | |||
ActionResult <|-- RedirectResult | |||
ActionResult <|-- StatusCodeResult | |||
}} | }} |
Aktuelle Version vom 23. März 2025, 03:45 Uhr