IWMSLoggingAdmin.CurrentLogFileName (C#)

banner art

Previous Next

IWMSLoggingAdmin.CurrentLogFileName (C#)

The CurrentLogFileName property retrieves the name of the current log file.

Syntax

  string = IWMSLoggingAdmin.CurrentLogFileName;

Property Value

A string containing the name.

If this property fails, it throws an exception.

Number Description
0x8007000E The server cannot allocate memory.
0x80004005 The server cannot find the WMS Client Logging plug-in.

Remarks

This property is read-only.

Example Code

using Microsoft.WindowsMediaServices.Interop;
using System.Runtime.InteropServices;

// Declare variables.
WMSServer Server;
IWMSPlugin Plugin;
IWMSLoggingAdmin LogAdmin;

try {
    // Create a new WMSServer object.
    Server = new WMSServerClass();

    // Retrieve the plug-in to be configured.
    Plugin = Server.EventHandlers[
                        "WMS Client Logging"];

    // Retrieve the custom interface of the plug-in.
    LogAdmin =
        (IWMSLoggingAdmin)Plugin.CustomInterface;

    // Retrieve the path to the current log file.
    string strFile = LogAdmin.CurrentLogFileName;
}
catch (COMException comExc) {
    // TODO: Handle COM exceptions.
}
catch (Exception e) {
    // TODO: Handle exceptions.
}

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