|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace Microsoft.AspNetCore.Connections;
/// <summary>
/// Enumerates the <see cref="FileHandleEndPoint"/> types.
/// </summary>
public enum FileHandleType
{
/// <summary>
/// This API is unused and no longer supported.
/// </summary>
Auto,
/// <summary>
/// This API is unused and no longer supported.
/// </summary>
Tcp,
/// <summary>
/// This API is unused and no longer supported.
/// </summary>
Pipe
}
|