Share via


IWMSLoggingAdmin.MaxSize (Visual Basic .NET)

banner art

Previous Next

IWMSLoggingAdmin.MaxSize (Visual Basic .NET)

The MaxSize property specifies and retrieves the maximum permitted size of the log file.

Syntax

  IWMSLoggingAdmin
  .MaxSize = Integer
Integer = IWMSLoggingAdmin.MaxSize

Property Value

Integer containing the maximum file size in kilobytes.

If this property fails, it throws an exception.

Number Description
0x80004005 The server cannot find the WMS Client Logging plug-in.
0x80070057 The value you specified is less than or equal to zero.

Remarks

This property only applies when the WMS_LOG_CYCLE_TYPE enumeration value is WMS_LOG_CYCLE_SIZE. For more information, see the IWMSLoggingAdmin.LoggedEvents property.

Example Code

Imports Microsoft.WindowsMediaServices.Interop
Imports System.Runtime.InteropServices

Private Sub SetLogSize()

    ' Declare variables.
    Dim Server As WMSServer
    Dim Plugin As IWMSPlugin
    Dim LogAdmin As IWMSLoggingAdmin

Try
    ' Create the WMSServer object.
    Server = New WMSServer()

    ' Retrieve the plug-in to be configured.
    Plugin = Server.EventHandlers.Item("WMS Client Logging")

    ' Retrieve the custom interface of the plug-in.
    LogAdmin = Plugin.CustomInterface

    ' Set the maximum size of a log file.
    LogAdmin.MaxSize = 10000

Catch excCom As COMException
    ' TODO: Handle COM exceptions.
Catch exc As Exception
    ' TODO: Handle errors.
Finally
    ' TODO: Clean-up code goes here.
End Try

End Sub

Requirements

Reference: Add a reference to Microsoft.WindowsMediaServices.

Namespace: Microsoft.WindowsMediaServices.Interop.

Assembly: Microsoft.WindowsMediaServices.dll.

Library: WMSServerTypeLib.dll.

Platform: Windows Server 2003 family, Windows Server 2008 family.

See Also

Previous Next