< Summary

Class:MUNity.BlazorServer.Pages.Pages__Host
Assembly:MUNity.BlazorServer
File(s):C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNity.BlazorServer\Pages\_Host.cshtml
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:84
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:10
Branch coverage:0% (0 of 10)
Covered methods:0
Total methods:2
Method coverage:0% (0 of 2)

Metrics

MethodBranch coverage Cyclomatic complexity Line coverage
ExecuteAsync()0%40%
<ExecuteAsync()0%60%

File(s)

C:\Users\aeuke\source\repos\PeerConradi\munity\src\MUNity.BlazorServer\Pages\_Host.cshtml

#LineLine coverage
 1@page "/"
 2@namespace MUNity.BlazorServer.Pages
 3@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
 4@{
 05    Layout = null;
 6}
 7
 8<!DOCTYPE html>
 9<html lang="en">
 10<head>
 11    <meta charset="utf-8" />
 12    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 13    <title>MUNity</title>
 14    <base href="~/" />
 15    @*<link rel="stylesheet" href="css/bootstrap/bootstrap.min.css" />*@
 16    <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700" rel="stylesheet" />
 17    <link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
 18    <link href="css/site.css" rel="stylesheet" />
 19    @*<link href="MUNity.BlazorServer.styles.css" rel="stylesheet" />*@
 20    <link href="css/material/app.min.css" rel="stylesheet" />
 21    <link href="css/vendor.min.css" rel="stylesheet" />
 22    <link rel="stylesheet" href="_content/Radzen.Blazor/css/default-base.css">
 23</head>
 24<body>
 25    <h3 style="padding: 10%" id="incompatibleBrowser">
 26        Ihr Browser ist inkompatibel. Bitte wechseln Sie auf einen moderneren Browser.
 27        <br />
 28        <a href="https://brave.com/">Brave</a> <br />
 29        <a href="https://www.mozilla.org/de/firefox/new/">Firefox</a> <br />
 30        <a href="https://www.microsoft.com/de-de/edge">Edge</a> <br />
 31        <a href="https://www.google.com/intl/de/chrome/">Chrome</a> <br />
 32    </h3>
 33
 34    <!-- Blazor overlay -->
 35    <div id="components-reconnect-modal" class="my-reconnect-modal components-reconnect-hide">
 36        <div class="show">
 37            <div class="connectionError">
 38                <div class="alert alert-danger">Verbindungsabbruch - Verbindung wird wiederhergestellt</div>
 39            </div>
 40
 41        </div>
 42        <div class="failed">
 43        </div>
 44        <div class="rejected">
 45        </div>
 46    </div>
 47
 48    @*render-mode="Server"*@
 049    <component type="typeof(App)" render-mode="Server" />
 50
 51    <div id="blazor-error-ui">
 52        <environment include="Staging,Production">
 53            Es ist ein Fehler aufgetreten. Bitte die Seite neu laden, sollte der Fehler weiterhin bestehen den Support k
 54        </environment>
 55        <environment include="Development">
 56            An unhandled exception has occurred. See browser dev tools for details.
 57        </environment>
 58        <a href="" class="reload">Neu laden</a>
 59        <a class="dismiss">🗙</a>
 60    </div>
 61
 62    <script defer>
 63        const supported = (() => {
 64            try {
 65                if (typeof WebAssembly === "object"
 66                    && typeof WebAssembly.instantiate === "function") {
 67                    const module = new WebAssembly.Module(Uint8Array.of(0x0, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00));
 68                    if (module instanceof WebAssembly.Module)
 69                        return new WebAssembly.Instance(module) instanceof WebAssembly.Instance;
 70                }
 71            } catch (e) {
 72            }
 73            return false;
 74        })();
 75        if (supported) {
 76            document.getElementById('incompatibleBrowser').style.display = "none";
 77        }
 78    </script>
 79
 80    <script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>
 81
 82<script src="_framework/blazor.server.js"></script>
 83</body>
 84</html>

Methods/Properties

ExecuteAsync()
<ExecuteAsync()