Share via


IWMSLoggingAdmin.IsPathValid (C#)

banner art

Previous Next

IWMSLoggingAdmin.IsPathValid (C#)

The IsPathValid method validates the path to the log file.

Syntax

  bool = IWMSLoggingAdmin.IsPathValid(bstrPath);

Parameters

bstrPath

[in] string containing the path.

Return Values

This method returns a bool indicating whether the path is valid.

If this method fails, it throws an exception.

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

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 expanded form of the
    // current log file name template.
    string strExpanded = LogAdmin.ExpandTemplate(LogAdmin.Template);

    // Validate the path to the log file.
    bool bValid = LogAdmin.IsPathValid(strExpanded);
}
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