You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
71
mcs/class/referencesource/System.Web/UI/TraceModeEnum.cs
Normal file
71
mcs/class/referencesource/System.Web/UI/TraceModeEnum.cs
Normal file
@ -0,0 +1,71 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="TraceModeEnum.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/*
|
||||
* The different styles of trace output.
|
||||
*
|
||||
* Copyright (c) 1998 Microsoft Corporation
|
||||
*/
|
||||
|
||||
namespace System.Web {
|
||||
|
||||
using System;
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Specifies how trace messages are emitted into the HTML output of a page.</para>
|
||||
/// </devdoc>
|
||||
public enum TraceMode {
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Specifies that trace messages should be emitted in the order they were
|
||||
/// processed.</para>
|
||||
/// </devdoc>
|
||||
SortByTime = 0,
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Specifies that trace messages should be emitted
|
||||
/// alphabetically by category. </para>
|
||||
/// </devdoc>
|
||||
SortByCategory = 1,
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>Specifies the default value, which is <see langword='SortByTime'/>.</para>
|
||||
/// </devdoc>
|
||||
Default = 2,
|
||||
}
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
internal enum TraceEnable {
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Default,
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Enable,
|
||||
|
||||
|
||||
/// <devdoc>
|
||||
/// <para>[To be supplied.]</para>
|
||||
/// </devdoc>
|
||||
Disable,
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user