This file contains hidden or 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
[CmdletBinding()] | |
param ( | |
[string]$SeqVersion, | |
[string]$SeqPort | |
) | |
$installBasePath = "C:\Install\" | |
$global:seqDataPath = "C:\ProgramData\Seq" | |
function Write-Log |
This file contains hidden or 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
[HtmlTargetElement(Attributes = "is-active-route")] | |
public class ActiveRouteTagHelper : TagHelper | |
{ | |
private IDictionary<string, string> _routeValues; | |
/// <summary>The name of the action method.</summary> | |
/// <remarks>Must be <c>null</c> if <see cref="P:Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper.Route" /> is non-<c>null</c>.</remarks> | |
[HtmlAttributeName("asp-action")] | |
public string Action { get; set; } |