Theater SDK Banner 

Art
[Previous][Next]

Logging.Enabled Property

Returns or sets a Boolean value specifying whether or not logging is enabled.

Syntax

Logging.Enabled

Remarks

The following table includes valid values.

Value Description
True Indicates logging is enabled. This is the default value of the property.
False Indicates logging is disabled.

Example

The following code displays the current serverside logging directory (if it is enabled):

Sub displayLoggingDirectory(server As String)
    Dim logging As IMSrvLogging
    
    MediaServer1.SetServer server
    
    Set logging = MediaServer1.logging
    
    If (logging.Enabled) Then
        MsgBox(logging.Directory)
    End If
End Sub
[Previous][Next]



© 1996-1998 Microsoft Corporation. All rights reserved