This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private readonly Timer _timer = new Timer(300) { AutoReset = false, Enabled = false }; | |
// ... | |
_timer.Elapsed += (s, a) => | |
{ | |
Console.Beep(1500, 200); | |
_timer.Enabled = false; | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void OnDirectoryChange(object s, FileSystemEventArgs a) | |
{ | |
Console.Beep(1500, 200); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_fileSystemWatcher = new FileSystemWatcher | |
{ | |
Path = @"C:\My Project\Apps\Analysis", | |
NotifyFilter = NotifyFilters.LastWrite, | |
Filter = "*.*" | |
}; | |
_fileSystemWatcher.EnableRaisingEvents = true; | |
_fileSystemWatcher.Changed += OnDirectoryChange; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { KittenRoutes } from './kitten-routes'; | |
export class KittenService { | |
feedKitten(kittenId: number): void { | |
const url = KittenRoutes.feedKitten(kittenId); | |
this.http.post(url, {}).subscribe(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class KittenRoutes { | |
static readonly listKittens = 'api/kittens/list'; | |
static feedKitten(kittenId: any): string { | |
return `api/kitten/${kittenId}/feed`; | |
} | |
static adoptKitten(kittenId: any): string { | |
return `api/kitten/${kittenId}/feed`; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<#@ template debug="false" hostspecific="false" language="C#" #> | |
<#@ assembly name="System.Core" #> | |
<#@ import namespace="System.Linq" #> | |
<#@ assembly name="$(SolutionDir)Kittens.Web\bin\Kittens.Web.dll "#> | |
<#@ output extension=".ts" #> | |
export class KittensRoutes { | |
<# | |
// Get a collection of the constants in the class | |
var constants = typeof(Kittens.Web.KittensRoutes).GetFields(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export class KittenService { | |
feedKitten(kittenId: number): void { | |
const url = `api/kitten/${kittenId}/feed`; | |
this.http.post(url, {}).subscribe(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class KittenContoller: Controller | |
{ | |
[Route("api/kittens/list")] | |
public ActionResult Index() | |
{ | |
return View(); | |
} | |
[Route("api/kitten/{kittenId}/feed")] | |
public ActionResult Feed(int kittenId) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class KittenContoller: Controller | |
{ | |
[Route(RouteNames.KittenList)] | |
public ActionResult Index() | |
{ | |
return View(); | |
} | |
[Route(RouteNames.FeedKitten)] | |
public ActionResult Feed(int kittenId) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class RouteNames | |
{ | |
public const string ListKittens = "api/kittens/list"; | |
public const string FeedKitten = "api/kitten/{kittenId}/feed"; | |
public const string AdoptKitten = "api/kitten/{kittenId}/adopt"; | |
public const string RenameKitten = "api/kitten/{kittenId}/rename/{newName}"; | |
} |
NewerOlder