aspnetcore/src/Microsoft.AspNet.Diagnostics/WelcomePageOptions.cs

18 lines
557 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using Microsoft.AspNet.Abstractions;
namespace Microsoft.AspNet.Diagnostics
{
/// <summary>
/// Options for the WelcomePageMiddleware.
/// </summary>
public class WelcomePageOptions
{
/// <summary>
/// Specifies which requests paths will be responded to. Exact matches only. Leave null to handle all requests.
/// </summary>
public PathString Path { get; set; }
}
}