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
param( | |
[Parameter(Mandatory=$True, Position=0)] | |
[System.String] | |
$organization, | |
[Parameter(Mandatory=$True, Position=1)] | |
[System.String] | |
$feedName, | |
[Parameter(Mandatory=$True, Position=2)] |
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
using System; | |
using System.Web; | |
using System.Web.Routing; | |
namespace Example | |
{ | |
public class RouteInfo | |
{ |
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
'<begin script sample> | |
'This script provides high availability for IIS websites | |
'By default, it monitors the "Default Web Site" and "DefaultAppPool" | |
'To monitor another web site, change the SITE_NAME below | |
'To monitor another application pool, change the APP_POOL_NAME below | |
'More thorough and application-specific health monitoring logic can be added to the script if needed | |
Option Explicit |
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
using System; | |
using Microsoft.AspNet.SignalR; | |
namespace Airtime.Hubs | |
{ | |
/// <summary> | |
/// Hubs that have injected dependencies which must be scoped to the same lifetime should |