// 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 System.Threading;
namespace Microsoft.AspNetCore.Server.Testing
{
///
/// Result of a deployment.
///
public class DeploymentResult
{
///
/// Base Uri of the deployment application.
///
public string ApplicationBaseUri { get; set; }
///
/// The folder where the application is hosted. This path can be different from the
/// original application source location if published before deployment.
///
public string ContentRoot { get; set; }
///
/// Original deployment parameters used for this deployment.
///
public DeploymentParameters DeploymentParameters { get; set; }
///
/// Triggered when the host process dies or pulled down.
///
public CancellationToken HostShutdownToken { get; set; }
}
}