// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.AspNet.Http;
namespace Microsoft.AspNet.Builder
{
///
/// Options for the RuntimeInfoPage
///
public class RuntimeInfoPageOptions
{
///
/// Initializes a new instance of the class
///
public RuntimeInfoPageOptions()
{
Path = new PathString("/runtimeinfo");
}
///
/// Specifies which request path will be responded to. Exact match only. Set to null to handle all requests.
///
public PathString Path { get; set; }
}
}