This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling
public class Result | |
{ | |
protected internal Result(bool isSuccess, Error error) | |
{ | |
if (isSuccess && error != Error.None) | |
{ | |
throw new InvalidOperationException(); | |
} | |
if (!isSuccess && error == Error.None) |
This document now exists on the official ASP.NET core docs page.
{ | |
"final_space": true, | |
"console_title": true, | |
"console_title_style": "folder", | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"horizontal_offset": 0, | |
"vertical_offset": 0, |
var cem = new TemplateEmailModel
{
To = "[email protected]",
Subject = "SES Test"
};
var testCem = new TemplateEmailModel
{
// ternary operator | |
public static string Speak(string name="") => $"One for {(name=="" ? "you" : name)}, one for me.";} | |
// default value for optional argument | |
public static string Speak(string name="you") => string.Format("One for {0}, one for me.", name); | |
// null-coalescing assignment operator | |
public static string Speak(string name = null) => $"One for { name ?? "you"}, one for me."; |
[{"name":"","slug":"0-NeverTooEarly","day":0,"time":"04:30","location":"218 Club","notes":"","locationNotes":"","updated":"2019-05-11 12:13:33","types":["c"],"address":"218 S. Oneida","city":"Green Bay","state":"WI"},{"name":"Very Early Birds","slug":"0-Very Early Birds","day":0,"time":"06:00","location":"218 Club","notes":"","locationNotes":"","updated":"2019-05-11 12:13:33","types":["c"],"address":"218 S. Oneida","city":"Green Bay","state":"WI"},{"name":"Early Birds","slug":"0-Early Birds","day":0,"time":"07:30","location":"218 Club","notes":"Back Room","locationNotes":"","updated":"2019-05-11 12:13:33","types":["c"],"address":"218 S. Oneida","city":"Green Bay","state":"WI"},{"name":"Never on Sunday","slug":"0-Never on Sunday","day":0,"time":"09:30","location":"The Bridge","notes":"","locationNotes":"","updated":"2019-05-11 12:13:33","types":["c"],"address":"2514 Jenny Lane","city":"Green Bay","state":"WI"},{"name":"","slug":"0-EspanolaWillebrord","day":0,"time":"10:00","location":"St. Willebrord Church","n |