Table of Contents

Enum LogElements

Namespace
Dynamicweb.Logging
Assembly
Dynamicweb.Core.dll

Indicates the types of system elements to add to the log. Multiple elements can be added by 'element1 OR element2 OR ... OR elementN'

[Flags]
public enum LogElements

Fields

All = StackTrace | SessionVariables | Url | Items | RequestForm | RequestQueryString | ServerVariables

All log element types are logged.

Items = 8

All entries in the Items collection are logged.

None = 0

No system elements are logged.

RequestForm = 16

All entries in the Request.Form collection are logged.

RequestQueryString = 32

All entries in the Request.QueryString collection are logged.

ServerVariables = 64

All entries in the Request.ServerVariables collection are logged

SessionVariables = 2

All entries in the session are logged.

StackTrace = 1

Stack Trace is logged.

Url = 4

The current URL is logged.

To top