Test: Unterschied zwischen den Versionen

Aus ahrensburg.city
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:sequenceDiagram
{{#mermaid:pie title Flächenverteilung von Ahrensburg
participant Alice
    "Wohnbaufläche" : 963
participant Bob
    "Gewerbefläche" : 253
  Alice->John: Hello John, how are you?
    "Waldfläche" : 635
  loop Healthcheck
    "Wasserfläche" : 80
      John->John: Fight against hypochondria
}}
  end
<br>
  Note right of John: Rational thoughts <br/>prevail...
{{#mermaid:classDiagram
     John-->Alice: Great!
    class ActionResult {
     John->Bob: How about you?
        <<abstract>>
     Bob-->John: Jolly good!
        +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