ProcessModelLogLevel Sabit listesi

Tanım

Olay günlüğüne kaydedilecek olay türlerini belirtir.

Bu API, ürün altyapısını destekler ve doğrudan kodunuzdan kullanıma yönelik değildir.

public enum class ProcessModelLogLevel
public enum ProcessModelLogLevel
type ProcessModelLogLevel = 
Public Enum ProcessModelLogLevel
Devralma
ProcessModelLogLevel

Alanlar

All 1

Tüm işlem olaylarının günlüğe kaydedildiğini belirtir. Herhangi bir filtreleme olmadan bir uygulamanın oluşturabileceği olası hataları keşfetmek istediğinizde bu seçeneği kullanın. Bu seçenek, derleme ve hata ayıklama aşamasında kullanışlıdır.

Errors 2

Yalnızca beklenmeyen kapatmaların, bellek sınırı kapatmalarının ve kilitlenme kapatmalarının günlüğe kaydedildiğini belirtir. Varsayılan değer budur.

None 0

Hiçbir olayın günlüğe kaydedilmediğini belirtir. Test edilen ve dağıtılan uygulamalar için bu seçeneği kullanmak isteyebilirsiniz.

Örnekler

Aşağıdaki örnekte özelliğin nasıl ayarlanacağı gösterilmektedir ProcessModelSection.LogLevel .


// Get the current LogLevel property value.
ProcessModelLogLevel comLogLevel = 
    processModelSection.LogLevel;

// Set the LogLevel property to ProcessModelLogLevel.All.
processModelSection.LogLevel = ProcessModelLogLevel.All;
' Get the current LogLevel property value.
   Dim comLogLevel As ProcessModelLogLevel = _
   processModelSection.LogLevel

' Set the LogLevel property to ProcessModelLogLevel.All.
processModelSection.LogLevel = ProcessModelLogLevel.All

Açıklamalar

Numaralandırma, ProcessModelLogLevel özelliğini ayarlarken ProcessModelSection.LogLevel kullanılacak değerleri içerir.

Errors varsayılan değerdir.

Şunlara uygulanır

Ayrıca bkz.