15 lines
451 B
C#
15 lines
451 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="ProcessModelLogLevel.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Web.Configuration {
|
||
|
|
||
|
public enum ProcessModelLogLevel {
|
||
|
None = 0,
|
||
|
All = 1,
|
||
|
Errors = 2,
|
||
|
}
|
||
|
}
|